USB: Push BKL on open down into the drivers
Straightforward push into the drivers to allow auditing individual drivers separately Signed-off-by: Oliver Neukum <oliver@neukum.org> Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com> Cc: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f9de332ebf
commit
86266452f8
@@ -26,6 +26,7 @@
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/kref.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/usb/tmc.h>
|
||||
|
||||
@@ -113,6 +114,7 @@ static int usbtmc_open(struct inode *inode, struct file *filp)
|
||||
struct usbtmc_device_data *data;
|
||||
int retval = 0;
|
||||
|
||||
lock_kernel();
|
||||
intf = usb_find_interface(&usbtmc_driver, iminor(inode));
|
||||
if (!intf) {
|
||||
printk(KERN_ERR KBUILD_MODNAME
|
||||
@@ -128,6 +130,7 @@ static int usbtmc_open(struct inode *inode, struct file *filp)
|
||||
filp->private_data = data;
|
||||
|
||||
exit:
|
||||
unlock_kernel();
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user