mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 01:52:13 +00:00
USB: cdc-acm: fix I/O after failed open
Make sure to kill any already submitted read urbs on read-urb submission
failures in open in order to prevent doing I/O for a closed port.
Fixes: 088c64f812
("USB: cdc-acm: re-write read processing")
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8727bf689a
commit
e4c36076c2
@ -506,6 +506,7 @@ static int acm_port_activate(struct tty_port *port, struct tty_struct *tty)
|
|||||||
{
|
{
|
||||||
struct acm *acm = container_of(port, struct acm, port);
|
struct acm *acm = container_of(port, struct acm, port);
|
||||||
int retval = -ENODEV;
|
int retval = -ENODEV;
|
||||||
|
int i;
|
||||||
|
|
||||||
dev_dbg(&acm->control->dev, "%s\n", __func__);
|
dev_dbg(&acm->control->dev, "%s\n", __func__);
|
||||||
|
|
||||||
@ -556,6 +557,8 @@ static int acm_port_activate(struct tty_port *port, struct tty_struct *tty)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
error_submit_read_urbs:
|
error_submit_read_urbs:
|
||||||
|
for (i = 0; i < acm->rx_buflimit; i++)
|
||||||
|
usb_kill_urb(acm->read_urbs[i]);
|
||||||
acm->ctrlout = 0;
|
acm->ctrlout = 0;
|
||||||
acm_set_control(acm, acm->ctrlout);
|
acm_set_control(acm, acm->ctrlout);
|
||||||
error_set_control:
|
error_set_control:
|
||||||
|
Loading…
Reference in New Issue
Block a user