Re: [Intel-gfx] [PATCH 23/66] drm/i915: Move stolen stuff to i915_gtt

2013-07-01 Thread Daniel Vetter
On Mon, Jul 1, 2013 at 8:43 PM, Ben Widawsky wrote: > On Sun, Jun 30, 2013 at 03:18:46PM +0200, Daniel Vetter wrote: >> On Thu, Jun 27, 2013 at 04:30:24PM -0700, Ben Widawsky wrote: >> > It doesn't apply to generic VMA, so it belongs with the gtt. >> > >> > for file in `ls drivers/gpu/drm/i915/*.c

Re: [Intel-gfx] [PATCH 23/66] drm/i915: Move stolen stuff to i915_gtt

2013-07-01 Thread Ben Widawsky
On Sun, Jun 30, 2013 at 03:18:46PM +0200, Daniel Vetter wrote: > On Thu, Jun 27, 2013 at 04:30:24PM -0700, Ben Widawsky wrote: > > It doesn't apply to generic VMA, so it belongs with the gtt. > > > > for file in `ls drivers/gpu/drm/i915/*.c` ; do > > sed -i "s/mm.stolen_base/gtt.stolen_base/"

Re: [Intel-gfx] [PATCH 23/66] drm/i915: Move stolen stuff to i915_gtt

2013-06-30 Thread Daniel Vetter
On Thu, Jun 27, 2013 at 04:30:24PM -0700, Ben Widawsky wrote: > It doesn't apply to generic VMA, so it belongs with the gtt. > > for file in `ls drivers/gpu/drm/i915/*.c` ; do > sed -i "s/mm.stolen_base/gtt.stolen_base/" $file; > done > > for file in `ls drivers/gpu/drm/i915/*.c` ; do >

[Intel-gfx] [PATCH 23/66] drm/i915: Move stolen stuff to i915_gtt

2013-06-27 Thread Ben Widawsky
It doesn't apply to generic VMA, so it belongs with the gtt. for file in `ls drivers/gpu/drm/i915/*.c` ; do sed -i "s/mm.stolen_base/gtt.stolen_base/" $file; done for file in `ls drivers/gpu/drm/i915/*.c` ; do sed -i "s/mm.stolen/gtt.stolen/" $file; done Signed-off-by: Ben Widaws