]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
USB: serial: metro-usb: stop I/O after failed open
authorJohan Hovold <johan@kernel.org>
Thu, 12 Oct 2017 08:54:21 +0000 (10:54 +0200)
committerStefan Bader <stefan.bader@canonical.com>
Wed, 14 Mar 2018 10:41:23 +0000 (11:41 +0100)
BugLink: http://bugs.launchpad.net/bugs/1744212
commit 2339536d229df25c71c0900fc619289229bfecf6 upstream.

Make sure to kill the interrupt-in URB after a failed open request.
Apart from saving power (and avoiding stale input after a later
successful open), this also prevents a NULL-deref in the completion
handler if the port is manually unbound.

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: 704577861d5e ("USB: serial: metro-usb: get data from device in Uni-Directional mode.")
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
drivers/usb/serial/metro-usb.c

index 14511d6a7d44db1e31fc216ac71ebc89a8c27837..3950d44b80f1ce1076f1817d4dab1489c5b4566c 100644 (file)
@@ -189,7 +189,7 @@ static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
                dev_err(&port->dev,
                        "%s - failed submitting interrupt in urb, error code=%d\n",
                        __func__, result);
-               goto exit;
+               return result;
        }
 
        /* Send activate cmd to device */
@@ -198,9 +198,14 @@ static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
                dev_err(&port->dev,
                        "%s - failed to configure device, error code=%d\n",
                        __func__, result);
-               goto exit;
+               goto err_kill_urb;
        }
-exit:
+
+       return 0;
+
+err_kill_urb:
+       usb_kill_urb(port->interrupt_in_urb);
+
        return result;
 }