aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu
diff options
context:
space:
mode:
authorAndrey Grodzovsky <andrey.grodzovsky@amd.com>2018-08-27 14:17:26 -0400
committerAlex Deucher <alexander.deucher@amd.com>2018-08-27 16:21:20 -0400
commit7d0aa3765fa839c0047a8924807e5201f4d9e76d (patch)
treef47b9c6c59f9d66e46d6524666db8912489c9326 /drivers/gpu/drm/amd/amdgpu
parent9bbf6a5341092e8a9b4e7b02bea6721e29ced9ef (diff)
drm/amdgpu: Refine gmc9 VM fault print.
The fault reports the page number where the fault happend and not the exact faulty address. Update the print message to reflect that. Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
index 453bd7ea50e7..39bee98155ee 100644
--- a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
@@ -270,7 +270,7 @@ static int gmc_v9_0_process_interrupt(struct amdgpu_device *adev,
270 entry->src_id, entry->ring_id, entry->vmid, 270 entry->src_id, entry->ring_id, entry->vmid,
271 entry->pasid, task_info.process_name, task_info.tgid, 271 entry->pasid, task_info.process_name, task_info.tgid,
272 task_info.task_name, task_info.pid); 272 task_info.task_name, task_info.pid);
273 dev_err(adev->dev, " at address 0x%016llx from %d\n", 273 dev_err(adev->dev, " in page starting at address 0x%016llx from %d\n",
274 addr, entry->client_id); 274 addr, entry->client_id);
275 if (!amdgpu_sriov_vf(adev)) 275 if (!amdgpu_sriov_vf(adev))
276 dev_err(adev->dev, 276 dev_err(adev->dev,