diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2018-07-24 12:52:58 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-07-25 16:06:40 -0400 |
commit | 6cdf4e87b454d1f26ef557307345dadce71d1f94 (patch) | |
tree | fa6703b98bb7abed0cffcda488468c7cc690a5a4 /drivers/gpu | |
parent | 068c330419ffb3422a43cb7d34351f1ef033950f (diff) |
drm/amdgpu/gmc9: clarify GPUVM fault error message
The address printed is the actual address, not the page.
Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c | 2 |
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 9df94b45d17d..399a5db27649 100644 --- a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c | |||
@@ -269,7 +269,7 @@ static int gmc_v9_0_process_interrupt(struct amdgpu_device *adev, | |||
269 | entry->src_id, entry->ring_id, entry->vmid, | 269 | entry->src_id, entry->ring_id, entry->vmid, |
270 | entry->pasid, task_info.process_name, task_info.tgid, | 270 | entry->pasid, task_info.process_name, task_info.tgid, |
271 | task_info.task_name, task_info.pid); | 271 | task_info.task_name, task_info.pid); |
272 | dev_err(adev->dev, " at page 0x%016llx from %d\n", | 272 | dev_err(adev->dev, " at address 0x%016llx from %d\n", |
273 | addr, entry->client_id); | 273 | addr, entry->client_id); |
274 | if (!amdgpu_sriov_vf(adev)) | 274 | if (!amdgpu_sriov_vf(adev)) |
275 | dev_err(adev->dev, | 275 | dev_err(adev->dev, |