diff options
author | Christian König <christian.koenig@amd.com> | 2017-08-23 10:13:33 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-08-29 15:28:02 -0400 |
commit | 3d7d4d3a1b9f67c0caecf2b2aa8d7c347f074a33 (patch) | |
tree | 30c048a81343f29c2118246da7a2e556761d49d6 /drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h | |
parent | 08cab989f77582cb19df12d4a75a91b68b0017f6 (diff) |
drm/amdgpu: rework moved handling in the VM v2
Instead of using the vm_state use a separate flag to note
that the BO was moved.
v2: reorder patches to avoid temporary lockless access
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h index 9347d28c3c1e..1b478e62a948 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h | |||
@@ -105,6 +105,9 @@ struct amdgpu_vm_bo_base { | |||
105 | 105 | ||
106 | /* protected by spinlock */ | 106 | /* protected by spinlock */ |
107 | struct list_head vm_status; | 107 | struct list_head vm_status; |
108 | |||
109 | /* protected by the BO being reserved */ | ||
110 | bool moved; | ||
108 | }; | 111 | }; |
109 | 112 | ||
110 | struct amdgpu_vm_pt { | 113 | struct amdgpu_vm_pt { |