提交 4a921645 编写于 作者: J Jesse Barnes 提交者: Dave Airlie

drm: when queuing an event with NEXTONMISS, return queued sequence to userspace

If we queue a vblank event but miss it, we should return the actual
sequence number we queued to userspace, so its event handling function
will know which event to look for.
Acked-by: NKristian Høgsberg <krh@bitplanet.net>
Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: NDave Airlie <airlied@redhat.com>
上级 c9a9c5e0
...@@ -585,6 +585,7 @@ static int drm_queue_vblank_event(struct drm_device *dev, int pipe, ...@@ -585,6 +585,7 @@ static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) && if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
(seq - vblwait->request.sequence) <= (1 << 23)) { (seq - vblwait->request.sequence) <= (1 << 23)) {
vblwait->request.sequence = seq + 1; vblwait->request.sequence = seq + 1;
vblwait->reply.sequence = vblwait->request.sequence;
} }
DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n", DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册