public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Ben Widawsky <ben@bwidawsk.net>
Cc: Intel GFX <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 00/11] ppgtt: just the VMA
Date: Tue, 9 Jul 2013 09:50:24 +0200	[thread overview]
Message-ID: <20130709075024.GU18285@phenom.ffwll.local> (raw)
In-Reply-To: <1373350122-5118-1-git-send-email-ben@bwidawsk.net>

On Mon, Jul 08, 2013 at 11:08:31PM -0700, Ben Widawsky wrote:
> By Daniel's request, to make the PPGTT merging more manageable, here are the
> patches associated with the VM/VMA infrastructure. They are not as well tested
> as the previous series, although I would hope that without actually changing
> address space, most of this series is just massaging code.
> 
> Even though these patches were all cherry picked from the original,
> working series, the amount of rework was not insignificant ie. there may
> be a lot of bugs present, or changes needed.
> 
> There should be little to no effect on the code, since there will only ever be
> one VM until the rest of the PPGTT series is merged.
> 
> Finally, Daniel, is this more or less what you wanted first?

Yeah, looks good. I think up to patch 5 I can merge it (only 2 tiny
bikesheds), but I'll volunteer someone to do an in-depth review. Later
patches I think need a bit more discussion and maybe split-out of prep
work. I've dropped my questions on them.
-Daniel

> 
> References:
> http://lists.freedesktop.org/archives/intel-gfx/2013-June/029408.html
> 
> Ben Widawsky (11):
>   drm/i915: Move gtt and ppgtt under address space umbrella
>   drm/i915: Put the mm in the parent address space
>   drm/i915: Create a global list of vms
>   drm/i915: Move active/inactive lists to new mm
>   drm/i915: Create VMAs
>   drm/i915: plumb VM into object operations
>   drm/i915: Fix up map and fenceable for VMA
>   drm/i915: mm_list is per VMA
>   drm/i915: Update error capture for VMs
>   drm/i915: create an object_is_active()
>   drm/i915: Move active to vma
> 
>  drivers/gpu/drm/i915/i915_debugfs.c        |  88 ++++--
>  drivers/gpu/drm/i915/i915_dma.c            |   9 +-
>  drivers/gpu/drm/i915/i915_drv.h            | 243 +++++++++-------
>  drivers/gpu/drm/i915/i915_gem.c            | 432 ++++++++++++++++++++++-------
>  drivers/gpu/drm/i915/i915_gem_context.c    |   9 +-
>  drivers/gpu/drm/i915/i915_gem_debug.c      |   2 +-
>  drivers/gpu/drm/i915/i915_gem_evict.c      |  67 +++--
>  drivers/gpu/drm/i915/i915_gem_execbuffer.c |  87 +++---
>  drivers/gpu/drm/i915/i915_gem_gtt.c        | 193 +++++++------
>  drivers/gpu/drm/i915/i915_gem_stolen.c     |  19 +-
>  drivers/gpu/drm/i915/i915_gem_tiling.c     |  10 +-
>  drivers/gpu/drm/i915/i915_irq.c            | 158 ++++++++---
>  drivers/gpu/drm/i915/i915_trace.h          |  20 +-
>  drivers/gpu/drm/i915/intel_fb.c            |   1 -
>  drivers/gpu/drm/i915/intel_overlay.c       |   2 +-
>  drivers/gpu/drm/i915/intel_pm.c            |   2 +-
>  drivers/gpu/drm/i915/intel_ringbuffer.c    |  16 +-
>  17 files changed, 902 insertions(+), 456 deletions(-)
> 
> -- 
> 1.8.3.2
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

  parent reply	other threads:[~2013-07-09  7:50 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-09  6:08 [PATCH 00/11] ppgtt: just the VMA Ben Widawsky
2013-07-09  6:08 ` [PATCH 01/11] drm/i915: Move gtt and ppgtt under address space umbrella Ben Widawsky
2013-07-09  6:37   ` Daniel Vetter
2013-07-10 16:36     ` Ben Widawsky
2013-07-10 17:03       ` Daniel Vetter
2013-07-11 11:14   ` Imre Deak
2013-07-11 23:57     ` Ben Widawsky
2013-07-12 15:59       ` Ben Widawsky
2013-07-09  6:08 ` [PATCH 02/11] drm/i915: Put the mm in the parent address space Ben Widawsky
2013-07-09  6:08 ` [PATCH 03/11] drm/i915: Create a global list of vms Ben Widawsky
2013-07-09  6:37   ` Daniel Vetter
2013-07-09  6:08 ` [PATCH 04/11] drm/i915: Move active/inactive lists to new mm Ben Widawsky
2013-07-09  6:08 ` [PATCH 05/11] drm/i915: Create VMAs Ben Widawsky
2013-07-11 11:20   ` Imre Deak
2013-07-12  2:23     ` Ben Widawsky
2013-07-09  6:08 ` [PATCH 06/11] drm/i915: plumb VM into object operations Ben Widawsky
2013-07-09  7:15   ` Daniel Vetter
2013-07-10 16:37     ` Ben Widawsky
2013-07-10 17:05       ` Daniel Vetter
2013-07-10 22:23         ` Ben Widawsky
2013-07-11  6:01           ` Daniel Vetter
2013-07-12  2:23     ` Ben Widawsky
2013-07-12  6:26       ` Daniel Vetter
2013-07-12 15:46         ` Ben Widawsky
2013-07-12 16:46           ` Daniel Vetter
2013-07-16  3:57             ` Ben Widawsky
2013-07-16  5:06               ` Daniel Vetter
2013-07-09  6:08 ` [PATCH 07/11] drm/i915: Fix up map and fenceable for VMA Ben Widawsky
2013-07-09  7:16   ` Daniel Vetter
2013-07-10 16:39     ` Ben Widawsky
2013-07-10 17:08       ` Daniel Vetter
2013-07-09  6:08 ` [PATCH 08/11] drm/i915: mm_list is per VMA Ben Widawsky
2013-07-09  7:18   ` Daniel Vetter
2013-07-10 16:39     ` Ben Widawsky
2013-07-09  6:08 ` [PATCH 09/11] drm/i915: Update error capture for VMs Ben Widawsky
2013-07-09  6:08 ` [PATCH 10/11] drm/i915: create an object_is_active() Ben Widawsky
2013-07-09  6:08 ` [PATCH 11/11] drm/i915: Move active to vma Ben Widawsky
2013-07-09  7:45   ` Daniel Vetter
2013-07-10 16:39     ` Ben Widawsky
2013-07-10 17:13       ` Daniel Vetter
2013-07-09  7:50 ` Daniel Vetter [this message]
2013-07-13  4:45 ` [PATCH 12/15] [RFC] create vm->bind,unbind Ben Widawsky
2013-07-13  4:45   ` [PATCH 1/3] drm/i915: Add bind/unbind object functions to VM Ben Widawsky
2013-07-13  9:33     ` Daniel Vetter
2013-07-16  3:35       ` Ben Widawsky
2013-07-16  4:00         ` Ben Widawsky
2013-07-16  5:10           ` Daniel Vetter
2013-07-16  5:13         ` Daniel Vetter
2013-07-13  4:45   ` [PATCH 2/3] drm/i915: Use the new vm [un]bind functions Ben Widawsky
2013-07-13  4:45   ` [PATCH 3/3] drm/i915: eliminate vm->insert_entries() Ben Widawsky

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=20130709075024.GU18285@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=ben@bwidawsk.net \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox