All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Wilson <chris@chris-wilson.co.uk>
To: intel-gfx@lists.freedesktop.org
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Subject: [Intel-gfx] [PATCH 02/12] drm/i915/gt: Check for a completed last request once
Date: Tue,  7 Jul 2020 11:48:09 +0100	[thread overview]
Message-ID: <20200707104819.10877-3-chris@chris-wilson.co.uk> (raw)
In-Reply-To: <20200707104819.10877-1-chris@chris-wilson.co.uk>

Pull the repeated check for the last active request being completed to a
single spot, when deciding whether or not execlist preemption is
required.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/gt/intel_lrc.c | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
index 4eb397b0e14d..7bdbfac26d7b 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.c
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
@@ -2137,12 +2137,11 @@ static void execlists_dequeue(struct intel_engine_cs *engine)
 	 */
 
 	if ((last = *active)) {
-		if (need_preempt(engine, last, rb)) {
-			if (i915_request_completed(last)) {
-				tasklet_hi_schedule(&execlists->tasklet);
-				return;
-			}
+		if (i915_request_completed(last) &&
+		    !list_is_last(&last->sched.link, &engine->active.requests))
+			return;
 
+		if (need_preempt(engine, last, rb)) {
 			ENGINE_TRACE(engine,
 				     "preempting last=%llx:%lld, prio=%d, hint=%d\n",
 				     last->fence.context,
@@ -2170,11 +2169,6 @@ static void execlists_dequeue(struct intel_engine_cs *engine)
 			last = NULL;
 		} else if (need_timeslice(engine, last, rb) &&
 			   timeslice_expired(execlists, last)) {
-			if (i915_request_completed(last)) {
-				tasklet_hi_schedule(&execlists->tasklet);
-				return;
-			}
-
 			ENGINE_TRACE(engine,
 				     "expired last=%llx:%lld, prio=%d, hint=%d, yield?=%s\n",
 				     last->fence.context,
-- 
2.20.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2020-07-07 10:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-07 10:48 [Intel-gfx] Reduce interrupts-off time for execlists submission Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 01/12] drm/i915/gt: Decouple completed requests on unwind Chris Wilson
2020-07-07 10:48 ` Chris Wilson [this message]
2020-07-07 10:48 ` [Intel-gfx] [PATCH 03/12] drm/i915/gt: Replace direct submit with direct call to tasklet Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 04/12] drm/i915/gt: Use virtual_engine during execlists_dequeue Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 05/12] drm/i915/gt: Decouple inflight virtual engines Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 06/12] drm/i915/gt: Defer schedule_out until after the dequeue Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 07/12] drm/i915/gt: Resubmit the virtual engine on schedule-out Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 08/12] drm/i915/gt: Simplify virtual engine handling for execlists_hold() Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 09/12] drm/i915/gt: ce->inflight updates are now serialised Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 10/12] drm/i915/gt: Drop atomic for engine->fw_active tracking Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 11/12] drm/i915/gt: Extract busy-stats for ring-scheduler Chris Wilson
2020-07-07 10:48 ` [Intel-gfx] [PATCH 12/12] drm/i915/gt: Convert stats.active to plain unsigned int Chris Wilson
2020-07-07 11:35 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [01/12] drm/i915/gt: Decouple completed requests on unwind Patchwork
2020-07-07 11:36 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-07-07 11:56 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-07-07 13:37 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200707104819.10877-3-chris@chris-wilson.co.uk \
    --to=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.