mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
drm: missing mutex unlock
Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
332296016e
commit
7a3f1f216b
@ -441,8 +441,10 @@ int drm_rmmap_ioctl(struct inode *inode, struct file *filp,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!map)
|
||||
if (!map) {
|
||||
mutex_unlock(&dev->struct_mutex);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* Register and framebuffer maps are permanent */
|
||||
if ((map->type == _DRM_REGISTERS) || (map->type == _DRM_FRAME_BUFFER)) {
|
||||
|
Loading…
Reference in New Issue
Block a user