sync with OpenBSD -current
This commit is contained in:
parent
f3c6f98243
commit
4b49aefbb1
101 changed files with 911 additions and 672 deletions
|
@ -63,6 +63,17 @@ struct amdgpu_va {
|
|||
struct amdgpu_bo_va_mgr *vamgr;
|
||||
};
|
||||
|
||||
struct amdgpu_va_manager {
|
||||
/** The VA manager for the lower virtual address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_low;
|
||||
/** The VA manager for the 32bit address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_32;
|
||||
/** The VA manager for the high virtual address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_high;
|
||||
/** The VA manager for the 32bit high address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_high_32;
|
||||
};
|
||||
|
||||
struct amdgpu_device {
|
||||
atomic_t refcount;
|
||||
struct amdgpu_device *next;
|
||||
|
@ -80,14 +91,8 @@ struct amdgpu_device {
|
|||
pthread_mutex_t bo_table_mutex;
|
||||
struct drm_amdgpu_info_device dev_info;
|
||||
struct amdgpu_gpu_info info;
|
||||
/** The VA manager for the lower virtual address space */
|
||||
struct amdgpu_bo_va_mgr vamgr;
|
||||
/** The VA manager for the 32bit address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_32;
|
||||
/** The VA manager for the high virtual address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_high;
|
||||
/** The VA manager for the 32bit high address space */
|
||||
struct amdgpu_bo_va_mgr vamgr_high_32;
|
||||
|
||||
struct amdgpu_va_manager va_mgr;
|
||||
};
|
||||
|
||||
struct amdgpu_bo {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue