Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364410
b: refs/heads/master
c: 6a5c821
h: refs/heads/master
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Mar 25, 2013
1 parent 993ed09 commit eba75e9
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 68a2bed130a10cffbf68620f41d08a900b1d776b
refs/heads/master: 6a5c821cad1459ec2b5fd5778f46d13c4255a7bf
55 changes: 37 additions & 18 deletions trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -542,27 +542,30 @@ static void usb_serial_port_work(struct work_struct *work)
tty_kref_put(tty);
}

static void kill_traffic(struct usb_serial_port *port)
static void usb_serial_port_poison_urbs(struct usb_serial_port *port)
{
int i;

for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
usb_kill_urb(port->read_urbs[i]);
usb_poison_urb(port->read_urbs[i]);
for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
usb_kill_urb(port->write_urbs[i]);
/*
* This is tricky.
* Some drivers submit the read_urb in the
* handler for the write_urb or vice versa
* this order determines the order in which
* usb_kill_urb() must be used to reliably
* kill the URBs. As it is unknown here,
* both orders must be used in turn.
* The call below is not redundant.
*/
usb_kill_urb(port->read_urb);
usb_kill_urb(port->interrupt_in_urb);
usb_kill_urb(port->interrupt_out_urb);
usb_poison_urb(port->write_urbs[i]);

usb_poison_urb(port->interrupt_in_urb);
usb_poison_urb(port->interrupt_out_urb);
}

static void usb_serial_port_unpoison_urbs(struct usb_serial_port *port)
{
int i;

for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
usb_unpoison_urb(port->read_urbs[i]);
for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
usb_unpoison_urb(port->write_urbs[i]);

usb_unpoison_urb(port->interrupt_in_urb);
usb_unpoison_urb(port->interrupt_out_urb);
}

static void usb_serial_port_release(struct device *dev)
Expand Down Expand Up @@ -1082,7 +1085,7 @@ static void usb_serial_disconnect(struct usb_interface *interface)
tty_vhangup(tty);
tty_kref_put(tty);
}
kill_traffic(port);
usb_serial_port_poison_urbs(port);
cancel_work_sync(&port->work);
if (device_is_registered(&port->dev))
device_del(&port->dev);
Expand Down Expand Up @@ -1120,19 +1123,33 @@ int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
for (i = 0; i < serial->num_ports; ++i) {
port = serial->port[i];
if (port)
kill_traffic(port);
usb_serial_port_poison_urbs(port);
}

err_out:
return r;
}
EXPORT_SYMBOL(usb_serial_suspend);

static void usb_serial_unpoison_port_urbs(struct usb_serial *serial)
{
struct usb_serial_port *port;
int i;

for (i = 0; i < serial->num_ports; ++i) {
port = serial->port[i];
if (port)
usb_serial_port_unpoison_urbs(port);
}
}

int usb_serial_resume(struct usb_interface *intf)
{
struct usb_serial *serial = usb_get_intfdata(intf);
int rv;

usb_serial_unpoison_port_urbs(serial);

serial->suspending = 0;
if (serial->type->resume)
rv = serial->type->resume(serial);
Expand All @@ -1148,6 +1165,8 @@ static int usb_serial_reset_resume(struct usb_interface *intf)
struct usb_serial *serial = usb_get_intfdata(intf);
int rv;

usb_serial_unpoison_port_urbs(serial);

serial->suspending = 0;
if (serial->type->reset_resume)
rv = serial->type->reset_resume(serial);
Expand Down

0 comments on commit eba75e9

Please sign in to comment.