drm/i915/selftests: Increase timeout for live_parallel_switch
authorAkeem G Abodunrin <akeem.g.abodunrin@intel.com>
Wed, 22 Jun 2022 14:11:04 +0000 (15:11 +0100)
committerMatthew Auld <matthew.auld@intel.com>
Thu, 23 Jun 2022 14:44:14 +0000 (15:44 +0100)
With GuC submission, it takes a little bit longer switching contexts
among all available engines simultaneously, when running
live_parallel_switch subtest. Increase the timeout.

Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5885
Signed-off-by: Akeem G Abodunrin <akeem.g.abodunrin@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220622141104.334432-1-matthew.auld@intel.com
drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c

index 93a6742..c6ad67b 100644 (file)
@@ -212,7 +212,7 @@ static int __live_parallel_switch1(void *data)
 
                        i915_request_add(rq);
                }
-               if (i915_request_wait(rq, 0, HZ / 5) < 0)
+               if (i915_request_wait(rq, 0, HZ) < 0)
                        err = -ETIME;
                i915_request_put(rq);
                if (err)