]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
USB: usb_wwan: do not resume I/O on closing ports
authorJohan Hovold <jhovold@gmail.com>
Mon, 26 May 2014 17:23:32 +0000 (19:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 May 2014 22:04:08 +0000 (15:04 -0700)
Use tty-port initialised flag rather than private flag to determine when
port is closing down.

Since the tty-port flag is set prior to dropping DTR/RTS (when HUPCL is
set) this avoid submitting the read urbs when resuming the interface in
dtr_rts() only to immediately kill them again in shutdown().

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/usb-wwan.h
drivers/usb/serial/usb_wwan.c

index 8502f9add3346efe043d7a04ef0810e8700218bb..f22dff58b587a4c1da3fae281069dfb8bd6759df 100644 (file)
@@ -48,7 +48,6 @@ struct usb_wwan_port_private {
        struct urb *out_urbs[N_OUT_URB];
        u8 *out_buffer[N_OUT_URB];
        unsigned long out_busy; /* Bit vector of URBs in use */
-       int opened;
        struct usb_anchor delayed;
 
        /* Settings for the port */
index bbcbdaa16c17c7fd5e7f7091bebeef3398f7b58d..2932d9cfb16629bafe07abeec8bff85d0675f3fb 100644 (file)
@@ -395,7 +395,6 @@ int usb_wwan_open(struct tty_struct *tty, struct usb_serial_port *port)
        }
 
        spin_lock_irq(&intfdata->susp_lock);
-       portdata->opened = 1;
        if (++intfdata->open_ports == 1)
                serial->interface->needs_remote_wakeup = 1;
        spin_unlock_irq(&intfdata->susp_lock);
@@ -429,8 +428,11 @@ void usb_wwan_close(struct usb_serial_port *port)
 
        portdata = usb_get_serial_port_data(port);
 
+       /*
+        * Need to take susp_lock to make sure port is not already being
+        * resumed, but no need to hold it due to ASYNC_INITIALIZED.
+        */
        spin_lock_irq(&intfdata->susp_lock);
-       portdata->opened = 0;
        if (--intfdata->open_ports == 0)
                serial->interface->needs_remote_wakeup = 0;
        spin_unlock_irq(&intfdata->susp_lock);
@@ -645,11 +647,12 @@ int usb_wwan_resume(struct usb_serial *serial)
        spin_lock_irq(&intfdata->susp_lock);
        for (i = 0; i < serial->num_ports; i++) {
                port = serial->port[i];
-               portdata = usb_get_serial_port_data(port);
 
-               if (!portdata || !portdata->opened)
+               if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
                        continue;
 
+               portdata = usb_get_serial_port_data(port);
+
                if (port->interrupt_in_urb) {
                        err = usb_submit_urb(port->interrupt_in_urb,
                                        GFP_ATOMIC);