drm/i915/selftests: Terminate hangcheck sanitycheck forcibly
authorChris Wilson <chris@chris-wilson.co.uk>
Mon, 3 Dec 2018 11:36:59 +0000 (11:36 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Mon, 3 Dec 2018 12:26:04 +0000 (12:26 +0000)
If all else fails and we are stuck eternally waiting for the undying
request, abandon all hope.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181203113701.12106-6-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/selftests/intel_hangcheck.c

index defe671..a48fbe2 100644 (file)
@@ -308,6 +308,7 @@ static int igt_hang_sanitycheck(void *arg)
                goto unlock;
 
        for_each_engine(engine, i915, id) {
+               struct igt_wedge_me w;
                long timeout;
 
                if (!intel_engine_can_store_dword(engine))
@@ -328,9 +329,14 @@ static int igt_hang_sanitycheck(void *arg)
 
                i915_request_add(rq);
 
-               timeout = i915_request_wait(rq,
-                                           I915_WAIT_LOCKED,
-                                           MAX_SCHEDULE_TIMEOUT);
+               timeout = 0;
+               igt_wedge_on_timeout(&w, i915, HZ / 10 /* 100ms timeout*/)
+                       timeout = i915_request_wait(rq,
+                                                   I915_WAIT_LOCKED,
+                                                   MAX_SCHEDULE_TIMEOUT);
+               if (i915_terminally_wedged(&i915->gpu_error))
+                       timeout = -EIO;
+
                i915_request_put(rq);
 
                if (timeout < 0) {