All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Wilson <chris@chris-wilson.co.uk>
To: Dave Gordon <david.s.gordon@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [CI 14/25] drm/i915: Manually unwind after a failed request allocation
Date: Thu, 28 Apr 2016 15:55:03 +0100	[thread overview]
Message-ID: <20160428145503.GA8055@nuc-i3427.alporthouse.com> (raw)
In-Reply-To: <572221A8.1000600@intel.com>

On Thu, Apr 28, 2016 at 03:43:52PM +0100, Dave Gordon wrote:
> On 28/04/16 09:56, Chris Wilson wrote:
> >In the next patches, we want to move the work out of freeing the request
> >and into its retirement (so that we can free the request without
> >requiring the struct_mutex). This means that we cannot rely on
> >unreferencing the request to completely teardown the request any more
> >and so we need to manually unwind the failed allocation. In doing so, we
> >reorder the allocation in order to make the unwind simple (and ensure
> >that we don't try to unwind a partial request that may have modified
> >global state) and so we end up pushing the initial preallocation down
> >into the engine request initialisation functions where we have the
> >requisite control over the state of the request.
> >
> >Moving the initial preallocation into the engine is less than ideal: it
> >moves logic to handle a specific problem with request handling out of
> >the common code. On the other hand, it does allow those backends
> >significantly more flexibility in performing its allocations.
> >
> >Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> >Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> >Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
> >Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> >Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
> >---
> >  drivers/gpu/drm/i915/i915_gem.c         | 28 +++++++++-------------------
> >  drivers/gpu/drm/i915/intel_lrc.c        | 16 ++++++++++++++--
> >  drivers/gpu/drm/i915/intel_ringbuffer.c |  2 +-
> >  3 files changed, 24 insertions(+), 22 deletions(-)
> >
> >diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
> >index dd628eae0592..d7ff5e79182f 100644
> >--- a/drivers/gpu/drm/i915/i915_gem.c
> >+++ b/drivers/gpu/drm/i915/i915_gem.c
> >@@ -2766,15 +2766,6 @@ __i915_gem_request_alloc(struct intel_engine_cs *engine,
> >  	req->ctx  = ctx;
> >  	i915_gem_context_reference(req->ctx);
> >
> >-	if (i915.enable_execlists)
> >-		ret = intel_logical_ring_alloc_request_extras(req);
> >-	else
> >-		ret = intel_ring_alloc_request_extras(req);
> >-	if (ret) {
> >-		i915_gem_context_unreference(req->ctx);
> >-		goto err;
> >-	}
> >-
> >  	/*
> >  	 * Reserve space in the ring buffer for all the commands required to
> >  	 * eventually emit this request. This is to guarantee that the
> >@@ -2783,20 +2774,19 @@ __i915_gem_request_alloc(struct intel_engine_cs *engine,
> >  	 * away, e.g. because a GPU scheduler has deferred it.
> >  	 */
> >  	req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
> 
> If you move the begin() into the mechanism-specific code, you should
> logically move the above assignment with it; after all, the eventual
> add_request will itself indirect back to
> submission-mechanism-dependent code which may (will!) have to add
> different amounts of code to the ring according to the operation of
> the different mechanisms.

That's where we are going with this. We need 336 bytes for legacy and 128
bytes for execlists (today). Moving this from a common to an engine
specific value makes sense, especially as we are looking to make this more
dynamic in the future.
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2016-04-28 14:55 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-28  8:56 [CI 01/25] drm/i915/fbdev: Call intel_unpin_fb_obj() on release Chris Wilson
2016-04-28  8:56 ` [CI 02/25] drm/i915/overlay: Replace i915_gem_obj_ggtt_offset() with the known flip_addr Chris Wilson
2016-04-28  8:56 ` [CI 03/25] io-mapping: Specify mapping size for io_mapping_map_wc() Chris Wilson
2016-04-28  8:56 ` [CI 04/25] drm/i915: Introduce i915_vm_to_ggtt() Chris Wilson
2016-04-28  8:56 ` [CI 05/25] drm/i915: Move ioremap_wc tracking onto VMA Chris Wilson
2016-04-28  8:56 ` [CI 06/25] drm/i915: Use i915_vma_pin_iomap on the ringbuffer object Chris Wilson
2016-04-28  8:56 ` [CI 07/25] drm/i915: Mark the current context as lost on suspend Chris Wilson
2016-04-28  8:56 ` [CI 08/25] drm/i915: L3 cache remapping is part of context switching Chris Wilson
2016-04-28  8:56 ` [CI 09/25] drm/i915: Consolidate L3 remapping LRI Chris Wilson
2016-04-28  8:56 ` [CI 10/25] drm/i915: Remove early l3-remap Chris Wilson
2016-04-28  8:56 ` [CI 11/25] drm/i915: Rearrange switch_context to load the aliasing ppgtt on first use Chris Wilson
2016-04-28  8:56 ` [CI 12/25] drm/i915: Unify intel_ring_begin() Chris Wilson
2016-04-28  8:56 ` [CI 13/25] drm/i915: Remove the identical implementations of request space reservation Chris Wilson
2016-04-28 14:02   ` Dave Gordon
2016-04-28 14:31     ` Chris Wilson
2016-04-28 14:51       ` Daniel Vetter
2016-04-28  8:56 ` [CI 14/25] drm/i915: Manually unwind after a failed request allocation Chris Wilson
2016-04-28 14:43   ` Dave Gordon
2016-04-28 14:55     ` Chris Wilson [this message]
2016-04-28  8:56 ` [CI 15/25] drm/i915: Preallocate enough space for the average request Chris Wilson
2016-04-28  8:56 ` [CI 16/25] drm/i915: Update execlists context descriptor format commentary Chris Wilson
2016-04-28  8:56 ` [CI 17/25] drm/i915: Assign every HW context a unique ID Chris Wilson
2016-04-28 14:55   ` Dave Gordon
2016-04-28 15:32     ` Chris Wilson
2016-04-28 18:08       ` Dave Gordon
2016-04-28 18:35         ` Chris Wilson
2016-04-28  8:56 ` [CI 18/25] drm/i915: Replace the pinned context address with its " Chris Wilson
2016-04-28 15:23   ` Dave Gordon
2016-04-28  8:56 ` [CI 19/25] drm/i915: Refactor execlists default context pinning Chris Wilson
2016-04-28  8:56 ` [CI 20/25] drm/i915: Move the magical deferred context allocation into the request Chris Wilson
2016-04-28  8:56 ` [CI 21/25] drm/i915: Move releasing of the GEM request from free to retire/cancel Chris Wilson
2016-04-28  8:56 ` [CI 22/25] drm/i915: Track the previous pinned context inside the request Chris Wilson
2016-04-28 18:15   ` Dave Gordon
2016-04-28 18:33     ` Chris Wilson
2016-04-28  8:56 ` [CI 23/25] drm/i915: Store LRC hardware id in " Chris Wilson
2016-04-28  8:56 ` [CI 24/25] drm/i915: Stop tracking execlists retired requests Chris Wilson
2016-04-28  8:56 ` [CI 25/25] drm/i915: Unify GPU resets upon shutdown Chris Wilson
2016-04-28 10:58 ` ✗ Fi.CI.BAT: failure for series starting with [CI,01/25] drm/i915/fbdev: Call intel_unpin_fb_obj() on release Patchwork
2016-04-28 11:21   ` 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=20160428145503.GA8055@nuc-i3427.alporthouse.com \
    --to=chris@chris-wilson.co.uk \
    --cc=david.s.gordon@intel.com \
    --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.