Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a43adf07 authored by Chris Wilson's avatar Chris Wilson Committed by Daniel Vetter
Browse files

drm/i915: Eliminate the addr/seqno from the hangcheck warning



This is of no value to the developer reading the report, let alone the
bamboozled user.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Acked-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 6274f212
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -2515,12 +2515,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++;
		}
	}