mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-30 10:49:28 +00:00
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: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
6274f2126a
commit
a43adf0747
1 changed files with 3 additions and 5 deletions
|
@ -2515,12 +2515,10 @@ void i915_hangcheck_elapsed(unsigned long data)
|
||||||
|
|
||||||
for_each_ring(ring, dev_priv, i) {
|
for_each_ring(ring, dev_priv, i) {
|
||||||
if (ring->hangcheck.score > FIRE) {
|
if (ring->hangcheck.score > FIRE) {
|
||||||
rings_hung++;
|
DRM_ERROR("%s on %s ring\n",
|
||||||
DRM_ERROR("%s: %s on %s 0x%x\n", ring->name,
|
|
||||||
stuck[i] ? "stuck" : "no progress",
|
stuck[i] ? "stuck" : "no progress",
|
||||||
stuck[i] ? "addr" : "seqno",
|
ring->name);
|
||||||
stuck[i] ? ring->hangcheck.acthd & HEAD_ADDR :
|
rings_hung++;
|
||||||
ring->hangcheck.seqno);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue