summaryrefslogtreecommitdiff
path: root/bsd
diff options
context:
space:
mode:
authorMichel Daenzer <michel@daenzer.net>2003-02-02 03:06:47 +0000
committerMichel Daenzer <michel@daenzer.net>2003-02-02 03:06:47 +0000
commitc7d471b6ae936127311a816a8d15b4565746af48 (patch)
treeb5c5047f5852da807a7010db82f600e06e891c69 /bsd
parent9b9b099471580616e1685bae725f2c297179ae99 (diff)
don't inflate relative vblank sequence numbers on repeated calls (e.g. when
interrupted by a signal)
Diffstat (limited to 'bsd')
-rw-r--r--bsd/drm_dma.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/bsd/drm_dma.h b/bsd/drm_dma.h
index 69c66c9a..0f0dd4fd 100644
--- a/bsd/drm_dma.h
+++ b/bsd/drm_dma.h
@@ -619,6 +619,7 @@ int DRM(wait_vblank)( DRM_IOCTL_ARGS )
if (vblwait.request.type & _DRM_VBLANK_RELATIVE) {
vblwait.request.sequence += atomic_read(&dev->vbl_received);
+ vblwait.request.type &= ~_DRM_VBLANK_RELATIVE;
}
flags = vblwait.request.type & _DRM_VBLANK_FLAGS_MASK;