mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
USB: serial: keyspan_pda: fix stalled writes
commitc01d2c5869upstream. Make sure to clear the write-busy flag also in case no new data was submitted due to lack of device buffer space so that writing is resumed once space again becomes available. Fixes:507ca9bc04("[PATCH] USB: add ability for usb-serial drivers to determine if their write urb is currently being used.") Cc: stable <stable@vger.kernel.org> # 2.6.13 Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 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
3a24c8cbb6
commit
1254104e1c
@@ -548,7 +548,7 @@ static int keyspan_pda_write(struct tty_struct *tty,
|
||||
|
||||
rc = count;
|
||||
exit:
|
||||
if (rc < 0)
|
||||
if (rc <= 0)
|
||||
set_bit(0, &port->write_urbs_free);
|
||||
return rc;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user