diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2006-09-25 06:51:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-28 18:36:43 -0400 |
commit | e81ee637e4aed723f71007c90a901268317ed6d6 (patch) | |
tree | 25fec34b4577eb36b52b8e4e45a191138ac49404 /drivers/usb/serial/omninet.c | |
parent | 2e3a43f0b6f16705ec76d3744b82a116965ebebe (diff) |
usb-serial: possible irq lock inversion (PPP vs. usb/serial)
=========================================================
[ INFO: possible irq lock inversion dependency detected ]
Diffstat (limited to 'drivers/usb/serial/omninet.c')
-rw-r--r-- | drivers/usb/serial/omninet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index e49f40913c27..a764ff4e326c 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c | |||
@@ -256,14 +256,14 @@ static int omninet_write (struct usb_serial_port *port, const unsigned char *buf | |||
256 | return (0); | 256 | return (0); |
257 | } | 257 | } |
258 | 258 | ||
259 | spin_lock(&wport->lock); | 259 | spin_lock_bh(&wport->lock); |
260 | if (wport->write_urb_busy) { | 260 | if (wport->write_urb_busy) { |
261 | spin_unlock(&wport->lock); | 261 | spin_unlock_bh(&wport->lock); |
262 | dbg("%s - already writing", __FUNCTION__); | 262 | dbg("%s - already writing", __FUNCTION__); |
263 | return 0; | 263 | return 0; |
264 | } | 264 | } |
265 | wport->write_urb_busy = 1; | 265 | wport->write_urb_busy = 1; |
266 | spin_unlock(&wport->lock); | 266 | spin_unlock_bh(&wport->lock); |
267 | 267 | ||
268 | count = (count > OMNINET_BULKOUTSIZE) ? OMNINET_BULKOUTSIZE : count; | 268 | count = (count > OMNINET_BULKOUTSIZE) ? OMNINET_BULKOUTSIZE : count; |
269 | 269 | ||