drm/amdkfd: rename kfd_process_vm_fault to kfd_dqm_evict_pasid
authorTao Zhou <tao.zhou1@amd.com>
Mon, 7 Feb 2022 06:45:18 +0000 (14:45 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 9 Feb 2022 19:14:53 +0000 (14:14 -0500)
As the function is used in more different cases, use a more general
name.

Signed-off-by: Tao Zhou <tao.zhou1@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/cik_event_interrupt.c
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
drivers/gpu/drm/amd/amdkfd/kfd_int_process_v9.c
drivers/gpu/drm/amd/amdkfd/kfd_priv.h

index d60576c..5c8023c 100644 (file)
@@ -110,7 +110,7 @@ static void cik_event_interrupt_wq(struct kfd_dev *dev,
                struct kfd_vm_fault_info info;
 
                kfd_smi_event_update_vmfault(dev, pasid);
-               kfd_process_vm_fault(dev->dqm, pasid);
+               kfd_dqm_evict_pasid(dev->dqm, pasid);
 
                memset(&info, 0, sizeof(info));
                amdgpu_amdkfd_gpuvm_get_vm_fault_info(dev->adev, &info);
index 63b3c7a..219acc8 100644 (file)
@@ -2120,7 +2120,7 @@ void device_queue_manager_uninit(struct device_queue_manager *dqm)
        kfree(dqm);
 }
 
-int kfd_process_vm_fault(struct device_queue_manager *dqm, u32 pasid)
+int kfd_dqm_evict_pasid(struct device_queue_manager *dqm, u32 pasid)
 {
        struct kfd_process_device *pdd;
        struct kfd_process *p = kfd_lookup_process_by_pasid(pasid);
index e8bc280..7a2b634 100644 (file)
@@ -308,7 +308,7 @@ static void event_interrupt_wq_v9(struct kfd_dev *dev,
                info.prot_write = ring_id & 0x20;
 
                kfd_smi_event_update_vmfault(dev, pasid);
-               kfd_process_vm_fault(dev->dqm, pasid);
+               kfd_dqm_evict_pasid(dev->dqm, pasid);
                kfd_signal_vm_fault_event(dev, pasid, &info);
        }
 }
index 74ff413..74fb476 100644 (file)
@@ -1174,7 +1174,7 @@ void device_queue_manager_uninit(struct device_queue_manager *dqm);
 struct kernel_queue *kernel_queue_init(struct kfd_dev *dev,
                                        enum kfd_queue_type type);
 void kernel_queue_uninit(struct kernel_queue *kq, bool hanging);
-int kfd_process_vm_fault(struct device_queue_manager *dqm, u32 pasid);
+int kfd_dqm_evict_pasid(struct device_queue_manager *dqm, u32 pasid);
 
 /* Process Queue Manager */
 struct process_queue_node {