drm/crtc: Convert setcrtc ioctl locking to interruptible.
Pass DRM_MODESET_ACQUIRE_INTERRUPTIBLE to acquire_init, and handle drm_modeset_backoff which can now fail by returning the error. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20170912133749.6532-7-maarten.lankhorst@linux.intel.com Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
parent
c2e4ff34f4
commit
3fa6a07354
|
@ -577,7 +577,7 @@ int drm_mode_setcrtc(struct drm_device *dev, void *data,
|
||||||
DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
|
DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
|
||||||
|
|
||||||
mutex_lock(&crtc->dev->mode_config.mutex);
|
mutex_lock(&crtc->dev->mode_config.mutex);
|
||||||
drm_modeset_acquire_init(&ctx, 0);
|
drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
|
||||||
retry:
|
retry:
|
||||||
ret = drm_modeset_lock_all_ctx(crtc->dev, &ctx);
|
ret = drm_modeset_lock_all_ctx(crtc->dev, &ctx);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
@ -717,7 +717,8 @@ int drm_mode_setcrtc(struct drm_device *dev, void *data,
|
||||||
kfree(connector_set);
|
kfree(connector_set);
|
||||||
drm_mode_destroy(dev, mode);
|
drm_mode_destroy(dev, mode);
|
||||||
if (ret == -EDEADLK) {
|
if (ret == -EDEADLK) {
|
||||||
drm_modeset_backoff(&ctx);
|
ret = drm_modeset_backoff(&ctx);
|
||||||
|
if (!ret)
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
drm_modeset_drop_locks(&ctx);
|
drm_modeset_drop_locks(&ctx);
|
||||||
|
|
Loading…
Reference in New Issue