]> git.karo-electronics.de Git - karo-tx-linux.git/commit
USB: usbserial - fix potential deadlock between write() and IRQ
authorJiri Kosina <jkosina@suse.cz>
Fri, 19 Oct 2007 22:05:19 +0000 (00:05 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 16 Nov 2007 17:30:23 +0000 (09:30 -0800)
commit70ad1f56fd045f830191956fbf25058733d40b96
tree47afe07068f521720b2c1b21d50517840d343a37
parent4b4257111c971458a73e21821d437bf130966cd9
USB: usbserial - fix potential deadlock between write() and IRQ

patch acd2a847e7fee7df11817f67dba75a2802793e5d in mainline.

USB: usbserial - fix potential deadlock between write() and IRQ

usb_serial_generic_write() doesn't disable interrupts when taking port->lock,
and could therefore deadlock with usb_serial_generic_read_bulk_callback()
being called from interrupt, taking the same lock. Fix it.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Acked-by: Larry Finger <larry.finger@lwfinger.net>
Cc: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/serial/generic.c