1
0
mirror of https://github.com/openbsd/src.git synced 2026-06-18 07:13:36 +02:00

drm/atomic: Increase timeout in drm_atomic_helper_wait_for_vblanks()

From Thomas Zimmermann
ed39ecd3a96cdf94589aef46f2f711cf93baa0d3 in linux-6.18.y/6.18.34
79ae8510b5b81b9500370f89c619b50ca9c0990f in mainline linux
This commit is contained in:
jsg
2026-06-02 03:36:50 +00:00
parent e1915e718d
commit 37e0c6717d
+1 -1
View File
@@ -1919,7 +1919,7 @@ drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
ret = wait_event_timeout(dev->vblank[i].queue,
state->crtcs[i].last_vblank_count !=
drm_crtc_vblank_count(crtc),
msecs_to_jiffies(100));
msecs_to_jiffies(1000));
WARN(!ret, "[CRTC:%d:%s] vblank wait timed out\n",
crtc->base.id, crtc->name);