aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_drv.h
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-10-24 08:15:58 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-12-03 00:11:16 -0500
commit1f6d2de2c539df6fe52ad2187191a9dfe10c7233 (patch)
tree29758c192b7e9dfef4c4f4793bc8c459d5cdb85f /drivers/gpu/drm/nouveau/nouveau_drv.h
parent1c180fa5bd5f264e4863bb88861e8cd7d135b917 (diff)
drm/nv50: Keep track of the head a channel is vsync'ing to.
In a multihead setup vblank interrupts may end up enabled in both heads. In that case we want to ignore the vblank interrupts coming from the wrong CRTC to avoid tearing and unbalanced calls to drm_vblank_get/put (fdo bug 31074). Reported-by: Felix Leimbach <felix.leimbach@gmx.net> Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index 2bb1f1572a55..5814db82f778 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
@@ -257,6 +257,7 @@ struct nouveau_channel {
257 257
258 struct { 258 struct {
259 struct nouveau_gpuobj *vblsem; 259 struct nouveau_gpuobj *vblsem;
260 uint32_t vblsem_head;
260 uint32_t vblsem_offset; 261 uint32_t vblsem_offset;
261 uint32_t vblsem_rval; 262 uint32_t vblsem_rval;
262 struct list_head vbl_wait; 263 struct list_head vbl_wait;