mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
USB: serial: sierra: fix potential deadlock at close
commite60870012eupstream. The portdata spinlock can be taken in interrupt context (via sierra_outdat_callback()). Disable interrupts when taking the portdata spinlock when discarding deferred URBs during close to prevent a possible deadlock. Fixes:014333f77c("USB: sierra: fix urb and memory leak on disconnect") Cc: stable <stable@vger.kernel.org> Signed-off-by: John Ogness <john.ogness@linutronix.de> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> [ johan: amend commit message and add fixes and stable tags ] Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
33a3444a09
commit
d17b9ab7d9
@@ -773,9 +773,9 @@ static void sierra_close(struct usb_serial_port *port)
|
||||
kfree(urb->transfer_buffer);
|
||||
usb_free_urb(urb);
|
||||
usb_autopm_put_interface_async(serial->interface);
|
||||
spin_lock(&portdata->lock);
|
||||
spin_lock_irq(&portdata->lock);
|
||||
portdata->outstanding_urbs--;
|
||||
spin_unlock(&portdata->lock);
|
||||
spin_unlock_irq(&portdata->lock);
|
||||
}
|
||||
|
||||
sierra_stop_rx_urbs(port);
|
||||
|
||||
Reference in New Issue
Block a user