Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93296
b: refs/heads/master
c: 2097890
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Apr 25, 2008
1 parent baf607d commit 7a3b0b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 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: 3d01f0fe6b66dd34511eaf35e06764b8997187bc
refs/heads/master: 2097890c43a8fe90763f31b0010fd6963f5512c8
11 changes: 9 additions & 2 deletions trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,11 +401,13 @@ static int serial_ioctl (struct tty_struct *tty, struct file * file, unsigned in
struct usb_serial_port *port = tty->driver_data;
int retval = -ENODEV;

lock_kernel();
if (!port)
goto exit;

dbg("%s - port %d, cmd 0x%.4x", __FUNCTION__, port->number, cmd);

/* Caution - port->open_count is BKL protected */
if (!port->open_count) {
dbg ("%s - port not open", __FUNCTION__);
goto exit;
Expand All @@ -416,8 +418,8 @@ static int serial_ioctl (struct tty_struct *tty, struct file * file, unsigned in
retval = port->serial->type->ioctl(port, file, cmd, arg);
else
retval = -ENOIOCTLCMD;

exit:
unlock_kernel();
return retval;
}

Expand Down Expand Up @@ -446,19 +448,24 @@ static void serial_break (struct tty_struct *tty, int break_state)
{
struct usb_serial_port *port = tty->driver_data;

if (!port)
lock_kernel();
if (!port) {
unlock_kernel();
return;
}

dbg("%s - port %d", __FUNCTION__, port->number);

if (!port->open_count) {
dbg("%s - port not open", __FUNCTION__);
unlock_kernel();
return;
}

/* pass on to the driver specific version of this function if it is available */
if (port->serial->type->break_ctl)
port->serial->type->break_ctl(port, break_state);
unlock_kernel();
}

static int serial_read_proc (char *page, char **start, off_t off, int count, int *eof, void *data)
Expand Down

0 comments on commit 7a3b0b3

Please sign in to comment.