* [PATCH] drm/i915: Eliminate the addr/seqno from the hangcheck warning
@ 2013-06-07 13:03 Chris Wilson
2013-06-07 13:28 ` Mika Kuoppala
0 siblings, 1 reply; 2+ messages in thread
From: Chris Wilson @ 2013-06-07 13:03 UTC (permalink / raw)
To: intel-gfx
This is of no value to the developer reading the report, let alone the
bamboozled user.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
drivers/gpu/drm/i915/i915_irq.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index 1d40cfd..02d039c 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -2506,12 +2506,10 @@ void i915_hangcheck_elapsed(unsigned long data)
for_each_ring(ring, dev_priv, i) {
if (ring->hangcheck.score > FIRE) {
- rings_hung++;
- DRM_ERROR("%s: %s on %s 0x%x\n", ring->name,
+ DRM_ERROR("%s on %s ring\n",
stuck[i] ? "stuck" : "no progress",
- stuck[i] ? "addr" : "seqno",
- stuck[i] ? ring->hangcheck.acthd & HEAD_ADDR :
- ring->hangcheck.seqno);
+ ring->name);
+ rings_hung++;
}
}
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] drm/i915: Eliminate the addr/seqno from the hangcheck warning
2013-06-07 13:03 [PATCH] drm/i915: Eliminate the addr/seqno from the hangcheck warning Chris Wilson
@ 2013-06-07 13:28 ` Mika Kuoppala
0 siblings, 0 replies; 2+ messages in thread
From: Mika Kuoppala @ 2013-06-07 13:28 UTC (permalink / raw)
To: Chris Wilson, intel-gfx
Chris Wilson <chris@chris-wilson.co.uk> writes:
> This is of no value to the developer reading the report, let alone the
> bamboozled user.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Mika Kuoppala <mika.kuoppala@intel.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-07 13:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-07 13:03 [PATCH] drm/i915: Eliminate the addr/seqno from the hangcheck warning Chris Wilson
2013-06-07 13:28 ` Mika Kuoppala
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.