drm/xe: Decrement fault mode counts in xe_vm_close_and_put
authorMatthew Brost <matthew.brost@intel.com>
Fri, 24 Mar 2023 16:33:36 +0000 (09:33 -0700)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Tue, 19 Dec 2023 23:30:22 +0000 (18:30 -0500)
Rather waiting for the VM to be destroyed (all refs to VM go to zero),
drop the fault mode counts when the VM is closed in xe_vm_close_and_put.
This avoids a window where user space can create a faulting VM, close
it, and a subsequent creation of a non-faulting VM fails.

v2 (Lucas): Drop VLK reference in commit message

Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Suggested-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/xe/xe_vm.c

index 207d20d..49aa4dd 100644 (file)
@@ -1427,6 +1427,13 @@ void xe_vm_close_and_put(struct xe_vm *vm)
        XE_WARN_ON(!list_empty(&vm->extobj.list));
        up_write(&vm->lock);
 
+       mutex_lock(&xe->usm.lock);
+       if (vm->flags & XE_VM_FLAG_FAULT_MODE)
+               xe->usm.num_vm_in_fault_mode--;
+       else if (!(vm->flags & XE_VM_FLAG_MIGRATION))
+               xe->usm.num_vm_in_non_fault_mode--;
+       mutex_unlock(&xe->usm.lock);
+
        xe_vm_put(vm);
 }
 
@@ -1469,18 +1476,10 @@ static void vm_destroy_work_func(struct work_struct *w)
        }
        xe_vm_unlock(vm, &ww);
 
-       mutex_lock(&xe->usm.lock);
-       if (vm->flags & XE_VM_FLAG_FAULT_MODE)
-               xe->usm.num_vm_in_fault_mode--;
-       else if (!(vm->flags & XE_VM_FLAG_MIGRATION))
-               xe->usm.num_vm_in_non_fault_mode--;
-       mutex_unlock(&xe->usm.lock);
-
        trace_xe_vm_free(vm);
        dma_fence_put(vm->rebind_fence);
        dma_resv_fini(&vm->resv);
        kfree(vm);
-
 }
 
 void xe_vm_free(struct kref *ref)