mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 20:16:39 +07:00
USB: Remove BKL from usbdev_open()
Locking had long been changed making BKL redundant. Simply remove it. Signed-off-by: Oliver Neukum <oliver@neukum.org> Cc: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
554f76962d
commit
063e20eb98
@ -653,8 +653,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
|
||||
const struct cred *cred = current_cred();
|
||||
int ret;
|
||||
|
||||
lock_kernel();
|
||||
|
||||
ret = -ENOMEM;
|
||||
ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
|
||||
if (!ps)
|
||||
@ -713,7 +711,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
|
||||
usb_unlock_device(dev);
|
||||
snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
|
||||
current->comm);
|
||||
unlock_kernel();
|
||||
return ret;
|
||||
|
||||
out_unlock_device:
|
||||
@ -721,7 +718,6 @@ static int usbdev_open(struct inode *inode, struct file *file)
|
||||
usb_put_dev(dev);
|
||||
out_free_ps:
|
||||
kfree(ps);
|
||||
unlock_kernel();
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user