mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
USB: race fixes for usb-serial, step 3
- fix an error code returned if a device has been disconnected Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4b10f0f3a0
commit
3ff4fd94c8
@ -281,7 +281,7 @@ static void serial_close(struct tty_struct *tty, struct file * filp)
|
||||
static int serial_write (struct tty_struct * tty, const unsigned char *buf, int count)
|
||||
{
|
||||
struct usb_serial_port *port = tty->driver_data;
|
||||
int retval = -EINVAL;
|
||||
int retval = -ENODEV;
|
||||
|
||||
if (!port || port->serial->dev->state == USB_STATE_NOTATTACHED)
|
||||
goto exit;
|
||||
@ -289,6 +289,7 @@ static int serial_write (struct tty_struct * tty, const unsigned char *buf, int
|
||||
dbg("%s - port %d, %d byte(s)", __FUNCTION__, port->number, count);
|
||||
|
||||
if (!port->open_count) {
|
||||
retval = -EINVAL;
|
||||
dbg("%s - port not opened", __FUNCTION__);
|
||||
goto exit;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user