summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom St Denis <tom.stdenis@amd.com>2016-08-22 10:54:28 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-08-23 13:48:07 -0400
commit1b5836492de6a753f6bb420f500848761c6f84f3 (patch)
treed987821d55b34fc4e61d3de7825d8d8d6bf42018
parentddbbd3be96792665d1106f14cef8f1a11e81ecc3 (diff)
downloadop-kernel-dev-1b5836492de6a753f6bb420f500848761c6f84f3.zip
op-kernel-dev-1b5836492de6a753f6bb420f500848761c6f84f3.tar.gz
drm/amd/amdgpu: Print ring name in amdgpu_ib_schedule()
If the ring isn't ready lets print out which ring name to help debugging. Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
index a31d7ef..f5810f7 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
@@ -142,7 +142,7 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
}
if (!ring->ready) {
- dev_err(adev->dev, "couldn't schedule ib\n");
+ dev_err(adev->dev, "couldn't schedule ib on ring <%s>\n", ring->name);
return -EINVAL;
}
OpenPOWER on IntegriCloud