drm/amdgpu: add vm root BO lock before accessing the vm
authorArunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Wed, 30 Oct 2024 05:26:57 +0000 (10:56 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 8 Apr 2025 20:48:17 +0000 (16:48 -0400)
Add a vm root BO lock before accessing the userqueue VM.

v1:(Christian)
   - Keep the VM locked until you are done with the mapping.
   - Grab a temporary BO reference, drop the VM lock and acquire the BO.
     When you are done with everything just drop the BO lock and
     then the temporary BO reference.

Signed-off-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_userq_fence.c

index 969a3a75d8152739b398f2ac866e75c1cc9ec96b..6c9346f822c19ed2bde7f5f3235f4bcf05bb389b 100644 (file)
@@ -321,7 +321,6 @@ static const struct dma_fence_ops amdgpu_userq_fence_ops = {
 /**
  * amdgpu_userq_fence_read_wptr - Read the userq wptr value
  *
- * @filp: drm file private data structure
  * @queue: user mode queue structure pointer
  * @wptr: write pointer value
  *
@@ -331,25 +330,29 @@ static const struct dma_fence_ops amdgpu_userq_fence_ops = {
  *
  * Returns wptr value on success, error on failure.
  */
-static int amdgpu_userq_fence_read_wptr(struct drm_file *filp,
-                                       struct amdgpu_usermode_queue *queue,
+static int amdgpu_userq_fence_read_wptr(struct amdgpu_usermode_queue *queue,
                                        u64 *wptr)
 {
-       struct amdgpu_fpriv *fpriv = filp->driver_priv;
        struct amdgpu_bo_va_mapping *mapping;
-       struct amdgpu_vm *vm = &fpriv->vm;
        struct amdgpu_bo *bo;
        u64 addr, *ptr;
        int r;
 
+       r = amdgpu_bo_reserve(queue->vm->root.bo, false);
+       if (r)
+               return r;
+
        addr = queue->userq_prop->wptr_gpu_addr;
        addr &= AMDGPU_GMC_HOLE_MASK;
 
-       mapping = amdgpu_vm_bo_lookup_mapping(vm, addr >> PAGE_SHIFT);
-       if (!mapping)
+       mapping = amdgpu_vm_bo_lookup_mapping(queue->vm, addr >> PAGE_SHIFT);
+       if (!mapping) {
+               DRM_ERROR("Failed to lookup amdgpu_bo_va_mapping\n");
                return -EINVAL;
+       }
 
-       bo = mapping->bo_va->base.bo;
+       bo = amdgpu_bo_ref(mapping->bo_va->base.bo);
+       amdgpu_bo_unreserve(queue->vm->root.bo);
        r = amdgpu_bo_reserve(bo, true);
        if (r) {
                DRM_ERROR("Failed to reserve userqueue wptr bo");
@@ -366,11 +369,14 @@ static int amdgpu_userq_fence_read_wptr(struct drm_file *filp,
 
        amdgpu_bo_kunmap(bo);
        amdgpu_bo_unreserve(bo);
+       amdgpu_bo_unref(&bo);
 
        return 0;
 
 map_error:
        amdgpu_bo_unreserve(bo);
+       amdgpu_bo_unref(&bo);
+
        return r;
 }
 
@@ -449,7 +455,7 @@ int amdgpu_userq_signal_ioctl(struct drm_device *dev, void *data,
                goto exec_fini;
        }
 
-       r = amdgpu_userq_fence_read_wptr(filp, queue, &wptr);
+       r = amdgpu_userq_fence_read_wptr(queue, &wptr);
        if (r)
                goto exec_fini;