From 97afcad74df00a7a48d0a89a2fdb9d4d0fabab8a Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 18 Feb 2020 14:13:05 +0000 Subject: [PATCH] drm/i915/selftests: Check for any sign of request starting in wait_for_submit() We only want to wait until the request has been submitted at least once; that is it is either in flight, or has been. References: 957f7bc205e5 ("drm/i915/selftests: Check for the error interrupt before we wait!") Signed-off-by: Chris Wilson Cc: Matthew Auld Reviewed-by: Matthew Auld Link: https://patchwork.freedesktop.org/patch/msgid/20200218141305.1258394-1-chris@chris-wilson.co.uk --- drivers/gpu/drm/i915/gt/selftest_lrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c index 40c53cc1c7c0e..7b303d5fd5b8d 100644 --- a/drivers/gpu/drm/i915/gt/selftest_lrc.c +++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c @@ -83,7 +83,7 @@ static int wait_for_submit(struct intel_engine_cs *engine, return 0; } - if (i915_request_completed(rq)) /* that was quick! */ + if (i915_request_started(rq)) /* that was quick! */ return 0; } while (time_before(jiffies, timeout)); -- 2.39.5