OSDN Git Service

drm/amdgpu: set bulk_moveable to false when a per VM is released
authorChristian König <christian.koenig@amd.com>
Wed, 5 Sep 2018 15:04:44 +0000 (17:04 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 11 Sep 2018 03:45:32 +0000 (22:45 -0500)
Otherwise we might run into a use after free during bulk move.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c

index 9a5b1bb..f5a9600 100644 (file)
@@ -2512,8 +2512,12 @@ void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
                      struct amdgpu_bo_va *bo_va)
 {
        struct amdgpu_bo_va_mapping *mapping, *next;
+       struct amdgpu_bo *bo = bo_va->base.bo;
        struct amdgpu_vm *vm = bo_va->base.vm;
 
+       if (bo && bo->tbo.resv == vm->root.base.bo->tbo.resv)
+               vm->bulk_moveable = false;
+
        list_del(&bo_va->base.bo_list);
 
        spin_lock(&vm->invalidated_lock);