aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-01-14 05:40:54 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-01-22 04:34:35 -0500
commit8664850087deef3715c885529d94f9a82791de9c (patch)
treefc8789486bf578aac6692c4a6fa344270e63a3c4
parentfae0ce15c29ecc19ec192566f61ccbffe4f25ed0 (diff)
drm/i915: Tune down reset_stat output from ERROR to debug
This is user-triggerable and hence we should not allow it to spam dmesg. Also, it upsets the nice dmesg tracking piglit does. Note that this is just extra debugging information, mostly unwanted, in case of a hang and that there is a separate message to the user giving instructions on how to report a bug for a GPU hang. v2: Add note as suggests in Chris' reply. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72740 Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com> Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 32636a470367..51d4c1a0f544 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -2330,7 +2330,7 @@ static void i915_set_reset_status(struct intel_ring_buffer *ring,
2330 2330
2331 if (ring->hangcheck.action != HANGCHECK_WAIT && 2331 if (ring->hangcheck.action != HANGCHECK_WAIT &&
2332 i915_request_guilty(request, acthd, &inside)) { 2332 i915_request_guilty(request, acthd, &inside)) {
2333 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n", 2333 DRM_DEBUG("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
2334 ring->name, 2334 ring->name,
2335 inside ? "inside" : "flushing", 2335 inside ? "inside" : "flushing",
2336 offset, 2336 offset,