diff options
author | Oliver Neukum <oliver@neukum.org> | 2010-01-13 09:33:15 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-02 17:54:23 -0500 |
commit | 86266452f80545285c14e20a8024f79c4fb88a86 (patch) | |
tree | ebb0a287f9bf189737d4924536d18b36492fd330 /drivers/usb/misc/adutux.c | |
parent | f9de332ebf9df71892d52f7eb64af101a647349f (diff) |
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>
Diffstat (limited to 'drivers/usb/misc/adutux.c')
-rw-r--r-- | drivers/usb/misc/adutux.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/misc/adutux.c b/drivers/usb/misc/adutux.c index 306e97825b36..ac8ad91c2dac 100644 --- a/drivers/usb/misc/adutux.c +++ b/drivers/usb/misc/adutux.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/module.h> | 25 | #include <linux/module.h> |
26 | #include <linux/usb.h> | 26 | #include <linux/usb.h> |
27 | #include <linux/mutex.h> | 27 | #include <linux/mutex.h> |
28 | #include <linux/smp_lock.h> | ||
28 | #include <asm/uaccess.h> | 29 | #include <asm/uaccess.h> |
29 | 30 | ||
30 | #ifdef CONFIG_USB_DEBUG | 31 | #ifdef CONFIG_USB_DEBUG |
@@ -274,6 +275,7 @@ static int adu_open(struct inode *inode, struct file *file) | |||
274 | 275 | ||
275 | dbg(2,"%s : enter", __func__); | 276 | dbg(2,"%s : enter", __func__); |
276 | 277 | ||
278 | lock_kernel(); | ||
277 | subminor = iminor(inode); | 279 | subminor = iminor(inode); |
278 | 280 | ||
279 | if ((retval = mutex_lock_interruptible(&adutux_mutex))) { | 281 | if ((retval = mutex_lock_interruptible(&adutux_mutex))) { |
@@ -332,6 +334,7 @@ static int adu_open(struct inode *inode, struct file *file) | |||
332 | exit_no_device: | 334 | exit_no_device: |
333 | mutex_unlock(&adutux_mutex); | 335 | mutex_unlock(&adutux_mutex); |
334 | exit_no_lock: | 336 | exit_no_lock: |
337 | unlock_kernel(); | ||
335 | dbg(2,"%s : leave, return value %d ", __func__, retval); | 338 | dbg(2,"%s : leave, return value %d ", __func__, retval); |
336 | return retval; | 339 | return retval; |
337 | } | 340 | } |