Commit 063e20eb authored by Oliver Neukum's avatar Oliver Neukum Committed by Greg Kroah-Hartman

USB: Remove BKL from usbdev_open()

Locking had long been changed making BKL redundant.
Simply remove it.
Signed-off-by: default avatarOliver Neukum <oliver@neukum.org>
Cc: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 554f7696
...@@ -653,8 +653,6 @@ static int usbdev_open(struct inode *inode, struct file *file) ...@@ -653,8 +653,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
const struct cred *cred = current_cred(); const struct cred *cred = current_cred();
int ret; int ret;
lock_kernel();
ret = -ENOMEM; ret = -ENOMEM;
ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL); ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
if (!ps) if (!ps)
...@@ -713,7 +711,6 @@ static int usbdev_open(struct inode *inode, struct file *file) ...@@ -713,7 +711,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
usb_unlock_device(dev); usb_unlock_device(dev);
snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current), snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
current->comm); current->comm);
unlock_kernel();
return ret; return ret;
out_unlock_device: out_unlock_device:
...@@ -721,7 +718,6 @@ static int usbdev_open(struct inode *inode, struct file *file) ...@@ -721,7 +718,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
usb_put_dev(dev); usb_put_dev(dev);
out_free_ps: out_free_ps:
kfree(ps); kfree(ps);
unlock_kernel();
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment