From: Daniel Vetter <daniel@ffwll.ch>
To: Chris Wilson <chris@chris-wilson.co.uk>,
Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
Intel-gfx@lists.freedesktop.org,
Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Subject: Re: [PATCH] drm/i915: Move flags describing VMA mappings into the VMA
Date: Fri, 24 Oct 2014 16:44:32 +0200 [thread overview]
Message-ID: <20141024144432.GF26941@phenom.ffwll.local> (raw)
In-Reply-To: <20141024144308.GE26941@phenom.ffwll.local>
On Fri, Oct 24, 2014 at 04:43:08PM +0200, Daniel Vetter wrote:
> On Fri, Oct 24, 2014 at 01:09:08PM +0100, Chris Wilson wrote:
> > On Fri, Oct 24, 2014 at 12:42:33PM +0100, Tvrtko Ursulin wrote:
> > > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > >
> > > If these flags are on the object level it will be more difficult to allow
> > > for multiple VMAs per object.
> > >
> > > v2: Simplification and cleanup after code review comments (Chris Wilson).
> > >
> > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> >
> > > diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
> > > index 053d99e..80f0c80 100644
> > > --- a/drivers/gpu/drm/i915/i915_gpu_error.c
> > > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c
> > > @@ -567,6 +567,7 @@ i915_error_object_create(struct drm_i915_private *dev_priv,
> > > struct i915_address_space *vm)
> > > {
> > > struct drm_i915_error_object *dst;
> > > + struct i915_vma *vma = NULL;
> > > int num_pages;
> > > bool use_ggtt;
> > > int i = 0;
> > > @@ -587,16 +588,17 @@ i915_error_object_create(struct drm_i915_private *dev_priv,
> > > dst->gtt_offset = -1;
> > >
> > > reloc_offset = dst->gtt_offset;
> > > + if (i915_is_ggtt(vm))
> > > + vma = i915_gem_obj_to_ggtt(src);
> > > use_ggtt = (src->cache_level == I915_CACHE_NONE &&
> > > - i915_is_ggtt(vm) &&
> > > - src->has_global_gtt_mapping &&
> > > - reloc_offset + num_pages * PAGE_SIZE <= dev_priv->gtt.mappable_end);
> > > + vma && (vma->bound & GLOBAL_BIND) &&
> > > + reloc_offset + num_pages * PAGE_SIZE <= dev_priv->gtt.mappable_end);
> > >
> > > /* Cannot access stolen address directly, try to use the aperture */
> > > if (src->stolen) {
> > > use_ggtt = true;
> > >
> > > - if (!src->has_global_gtt_mapping)
> > > + if (!(vma && vma->bound & GLOBAL_BIND))
> > > goto unwind;
> >
> > This looked odd as I have the vma being passed in:
> >
> > static struct drm_i915_error_object *
> > i915_error_object_create(struct drm_i915_private *dev_priv,
> > struct i915_vma *vma);
> >
> > but I presume the ppgtt error-capture is still outstanding.
>
> Oh meh, this is probably one of those tasks that I've asked Jesse to close
> in one of the "fuck this all" rage-quits in the past few months ... Indeed
> both code and testcase seem to not have materialized afaics.
>
> Jesse?
Actually cc Jesse ...
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
next prev parent reply other threads:[~2014-10-24 14:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-24 11:42 [PATCH] drm/i915: Move flags describing VMA mappings into the VMA Tvrtko Ursulin
2014-10-24 11:43 ` [RFC] drm/i915: Prepare for the idea there can be multiple VMA per VM Tvrtko Ursulin
2014-10-24 12:09 ` [PATCH] drm/i915: Move flags describing VMA mappings into the VMA Chris Wilson
2014-10-24 14:43 ` Daniel Vetter
2014-10-24 14:44 ` Daniel Vetter [this message]
2014-10-27 15:53 ` Jesse Barnes
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=20141024144432.GF26941@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=Intel-gfx@lists.freedesktop.org \
--cc=chris@chris-wilson.co.uk \
--cc=tvrtko.ursulin@intel.com \
--cc=tvrtko.ursulin@linux.intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox