aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-07-01 17:53:00 +0100
committerEric Anholt <eric@anholt.net>2010-07-01 15:28:08 -0700
commit43ed340ad93dcefe00a8f116b7e1b9dab2958543 (patch)
treecd904adb6ed4a965cfaee97162e52555a7be19f2 /drivers
parentdrm/i915: gen3 page flipping fixes (diff)
downloadlinux-dev-43ed340ad93dcefe00a8f116b7e1b9dab2958543.tar.xz
linux-dev-43ed340ad93dcefe00a8f116b7e1b9dab2958543.zip
drm/i915: Account for space on the ring buffer consumed whilst wrapping.
If we fill the tail of the physical ring buffer with NOOP when wrapping, we need to account for the reduction in available space. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/intel_ringbuffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c
index a3cac5791d76..26362f8495a8 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.c
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.c
@@ -687,6 +687,7 @@ int intel_wrap_ring_buffer(struct drm_device *dev,
*virt++ = MI_NOOP;
ring->tail = 0;
+ ring->space = ring->head - 8;
return 0;
}