[PATCH 1/2] drm/i915: Adjust the sentinel assert to match implementation

Tvrtko Ursulin tvrtko.ursulin at linux.intel.com
Mon Jun 1 10:38:53 UTC 2020


From: Tvrtko Ursulin <tvrtko.ursulin at intel.com>

Sentinels are supposed to be last reqeusts in the elsp queue, not the
only one, so adjust the assert accordingly.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
---
 drivers/gpu/drm/i915/gt/intel_lrc.c | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
index 6fc0966b75ff..0f55126d53da 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.c
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
@@ -1631,9 +1631,9 @@ assert_pending_valid(const struct intel_engine_execlists *execlists,
 		ccid = ce->lrc.ccid;
 
 		/*
-		 * Sentinels are supposed to be lonely so they flush the
-		 * current exection off the HW. Check that they are the
-		 * only request in the pending submission.
+		 * Sentinels are supposed to be the last request so they flush
+		 * the current exection off the HW. Check that they are the only
+		 * request in the pending submission.
 		 */
 		if (sentinel) {
 			GEM_TRACE_ERR("%s: context:%llx after sentinel in pending[%zd]\n",
@@ -1641,15 +1641,8 @@ assert_pending_valid(const struct intel_engine_execlists *execlists,
 				      ce->timeline->fence_context,
 				      port - execlists->pending);
 			return false;
-		}
-
-		sentinel = i915_request_has_sentinel(rq);
-		if (sentinel && port != execlists->pending) {
-			GEM_TRACE_ERR("%s: sentinel context:%llx not in prime position[%zd]\n",
-				      engine->name,
-				      ce->timeline->fence_context,
-				      port - execlists->pending);
-			return false;
+		} else  {
+			sentinel = i915_request_has_sentinel(rq);
 		}
 
 		/* Hold tightly onto the lock to prevent concurrent retires! */
-- 
2.20.1



More information about the Intel-gfx-trybot mailing list