accel/amdxdna: Use rcu_access_pointer for __rcu pointer
authorLizhi Hou <lizhi.hou@amd.com>
Thu, 2 Jan 2025 21:22:41 +0000 (13:22 -0800)
committerMario Limonciello <mario.limonciello@amd.com>
Sat, 4 Jan 2025 05:38:13 +0000 (23:38 -0600)
Use rcu_access_pointer for pid in struct drm_file. This fixes sparse
warning.

Fixes: be462c97b7df ("accel/amdxdna: Add hardware context")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202412311210.LfeHTzLw-lkp@intel.com/
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250102212244.1586340-4-lizhi.hou@amd.com
drivers/accel/amdxdna/amdxdna_pci_drv.c

index 194e44fc243d191e3d831f12b890d3040e19ed17..97d4a032171f1cd132adc8a0fb43227fec7a26bb 100644 (file)
@@ -61,7 +61,7 @@ static int amdxdna_drm_open(struct drm_device *ddev, struct drm_file *filp)
                goto put_rpm;
        }
 
-       client->pid = pid_nr(filp->pid);
+       client->pid = pid_nr(rcu_access_pointer(filp->pid));
        client->xdna = xdna;
 
        client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);