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/usb-skeleton.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/usb-skeleton.c')
-rw-r--r-- | drivers/usb/usb-skeleton.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c index 61522787f39c..e94176bfd272 100644 --- a/drivers/usb/usb-skeleton.c +++ b/drivers/usb/usb-skeleton.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
20 | #include <linux/kref.h> | 20 | #include <linux/kref.h> |
21 | #include <linux/smp_lock.h> | ||
21 | #include <linux/uaccess.h> | 22 | #include <linux/uaccess.h> |
22 | #include <linux/usb.h> | 23 | #include <linux/usb.h> |
23 | #include <linux/mutex.h> | 24 | #include <linux/mutex.h> |
@@ -90,6 +91,7 @@ static int skel_open(struct inode *inode, struct file *file) | |||
90 | int subminor; | 91 | int subminor; |
91 | int retval = 0; | 92 | int retval = 0; |
92 | 93 | ||
94 | lock_kernel(); | ||
93 | subminor = iminor(inode); | 95 | subminor = iminor(inode); |
94 | 96 | ||
95 | interface = usb_find_interface(&skel_driver, subminor); | 97 | interface = usb_find_interface(&skel_driver, subminor); |
@@ -135,6 +137,7 @@ static int skel_open(struct inode *inode, struct file *file) | |||
135 | mutex_unlock(&dev->io_mutex); | 137 | mutex_unlock(&dev->io_mutex); |
136 | 138 | ||
137 | exit: | 139 | exit: |
140 | unlock_kernel(); | ||
138 | return retval; | 141 | return retval; |
139 | } | 142 | } |
140 | 143 | ||