From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH 3/3] drm/i915: Treat weak-dependencies as bidirectional when applying priorities
Date: Thu, 7 May 2020 15:58:35 +0100 [thread overview]
Message-ID: <360b7bf2-a1ce-c028-0061-3a90641b18d2@linux.intel.com> (raw)
In-Reply-To: <20200507082124.1673-3-chris@chris-wilson.co.uk>
On 07/05/2020 09:21, Chris Wilson wrote:
> Clients may use a submit-fence as bidirectional bond between two or more
> co-operating requests, and so if we bump the priority of one, we wish to
> bump the priority of the set.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
> drivers/gpu/drm/i915/i915_scheduler.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_scheduler.c b/drivers/gpu/drm/i915/i915_scheduler.c
> index 6e2d4190099f..7194fbfcaa49 100644
> --- a/drivers/gpu/drm/i915/i915_scheduler.c
> +++ b/drivers/gpu/drm/i915/i915_scheduler.c
> @@ -291,6 +291,12 @@ static void __i915_schedule(struct i915_sched_node *node,
> if (prio > READ_ONCE(p->signaler->attr.priority))
> list_move_tail(&p->dfs_link, &dfs);
> }
> +
> + list_for_each_entry(p, &node->waiters_list, wait_link) {
> + if (p->flags & I915_DEPENDENCY_WEAK &&
> + prio > READ_ONCE(p->waiter->attr.priority))
> + list_move_tail(&p->dfs_link, &dfs);
> + }
> }
>
> /*
>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2020-05-07 14:58 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-07 8:21 [Intel-gfx] [PATCH 1/3] drm/i915: Mark concurrent submissions with a weak-dependency Chris Wilson
2020-05-07 8:21 ` Chris Wilson
2020-05-07 8:21 ` [Intel-gfx] [PATCH 2/3] drm/i915/gem: Treat submit-fence as weak dependency for new clients Chris Wilson
2020-05-07 14:59 ` Tvrtko Ursulin
2020-05-07 15:05 ` Chris Wilson
2020-05-07 15:10 ` Tvrtko Ursulin
2020-05-07 15:17 ` Chris Wilson
2020-05-07 8:21 ` [Intel-gfx] [PATCH 3/3] drm/i915: Treat weak-dependencies as bidirectional when applying priorities Chris Wilson
2020-05-07 8:29 ` [Intel-gfx] [PATCH] " Chris Wilson
2020-05-07 14:58 ` Tvrtko Ursulin [this message]
2020-05-07 9:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915: Mark concurrent submissions with a weak-dependency (rev2) Patchwork
2020-05-07 12:49 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2020-05-07 14:53 ` [Intel-gfx] [PATCH 1/3] drm/i915: Mark concurrent submissions with a weak-dependency Tvrtko Ursulin
2020-05-07 14:53 ` Tvrtko Ursulin
2020-05-07 15:00 ` Chris Wilson
2020-05-07 15:00 ` Chris Wilson
2020-05-07 15:23 ` Tvrtko Ursulin
2020-05-07 15:23 ` Tvrtko Ursulin
2020-05-07 15:34 ` Chris Wilson
2020-05-07 15:34 ` Chris Wilson
2020-05-07 17:55 ` Tvrtko Ursulin
2020-05-07 17:55 ` Tvrtko Ursulin
2020-05-07 18:05 ` Chris Wilson
2020-05-07 18:05 ` Chris Wilson
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=360b7bf2-a1ce-c028-0061-3a90641b18d2@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=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.