projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dad56ce
)
drm/legacy: Convert cursor ioctl locking to interruptible.
author
Maarten Lankhorst
<
[email protected]
>
Tue, 12 Sep 2017 13:37:46 +0000
(15:37 +0200)
committer
Maarten Lankhorst
<
[email protected]
>
Wed, 13 Sep 2017 07:51:31 +0000
(09:51 +0200)
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 <
[email protected]
>
Reviewed-by: Daniel Vetter <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
Reviewed-by: Emil Velikov <
[email protected]
>
drivers/gpu/drm/drm_plane.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/drm_plane.c
b/drivers/gpu/drm/drm_plane.c
index 85ab1eec73e572e4a1ce220bb4d73afb929e8e81..15549cc4d790d7062070158140fda653e8f3e718 100644
(file)
--- a/
drivers/gpu/drm/drm_plane.c
+++ b/
drivers/gpu/drm/drm_plane.c
@@
-833,7
+833,7
@@
static int drm_mode_cursor_common(struct drm_device *dev,
return -ENOENT;
}
- drm_modeset_acquire_init(&ctx,
0
);
+ drm_modeset_acquire_init(&ctx,
DRM_MODESET_ACQUIRE_INTERRUPTIBLE
);
retry:
ret = drm_modeset_lock(&crtc->mutex, &ctx);
if (ret)
@@
-875,8
+875,9
@@
retry:
}
out:
if (ret == -EDEADLK) {
- drm_modeset_backoff(&ctx);
- goto retry;
+ ret = drm_modeset_backoff(&ctx);
+ if (!ret)
+ goto retry;
}
drm_modeset_drop_locks(&ctx);