提交 fbc8a81d 编写于 作者: J Jonathan Corbet

UIO: cdev lock_kernel() pushdown

Signed-off-by: NJonathan Corbet <corbet@lwn.net>
上级 2edbf853
......@@ -297,12 +297,17 @@ static int uio_open(struct inode *inode, struct file *filep)
struct uio_listener *listener;
int ret = 0;
lock_kernel();
idev = idr_find(&uio_idr, iminor(inode));
if (!idev)
return -ENODEV;
if (!idev) {
ret = -ENODEV;
goto out;
}
if (!try_module_get(idev->owner))
return -ENODEV;
if (!try_module_get(idev->owner)) {
ret = -ENODEV;
goto out;
}
listener = kmalloc(sizeof(*listener), GFP_KERNEL);
if (!listener) {
......@@ -319,7 +324,7 @@ static int uio_open(struct inode *inode, struct file *filep)
if (ret)
goto err_infoopen;
}
unlock_kernel();
return 0;
err_infoopen:
......@@ -329,6 +334,8 @@ static int uio_open(struct inode *inode, struct file *filep)
module_put(idev->owner);
out:
unlock_kernel();
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册