Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15473
b: refs/heads/master
c: 8a4613f
h: refs/heads/master
i:
  15471: 31fe474
v: v3
  • Loading branch information
Luiz Fernando Capitulino authored and Greg Kroah-Hartman committed Jan 4, 2006
1 parent c520e4e commit 8ce0f7b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 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: 487f9c6710e7dff338e59820f6cfaeaaa87cb532
refs/heads/master: 8a4613f01f5bb850cab34e3db572d97251d997b3
14 changes: 13 additions & 1 deletion trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <linux/list.h>
#include <linux/smp_lock.h>
#include <asm/uaccess.h>
#include <asm/semaphore.h>
#include <linux/usb.h>
#include "usb-serial.h"
#include "pl2303.h"
Expand Down Expand Up @@ -190,6 +191,9 @@ static int serial_open (struct tty_struct *tty, struct file * filp)
port = serial->port[portNumber];
if (!port)
return -ENODEV;

if (down_interruptible(&port->sem))
return -ERESTARTSYS;

++port->open_count;

Expand All @@ -215,13 +219,15 @@ static int serial_open (struct tty_struct *tty, struct file * filp)
goto bailout_module_put;
}

up(&port->sem);
return 0;

bailout_module_put:
module_put(serial->type->driver.owner);
bailout_kref_put:
kref_put(&serial->kref, destroy_serial);
port->open_count = 0;
up(&port->sem);
return retval;
}

Expand All @@ -234,8 +240,10 @@ static void serial_close(struct tty_struct *tty, struct file * filp)

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

down(&port->sem);

if (port->open_count == 0)
return;
goto out;

--port->open_count;
if (port->open_count == 0) {
Expand All @@ -253,6 +261,9 @@ static void serial_close(struct tty_struct *tty, struct file * filp)
}

kref_put(&port->serial->kref, destroy_serial);

out:
up(&port->sem);
}

static int serial_write (struct tty_struct * tty, const unsigned char *buf, int count)
Expand Down Expand Up @@ -774,6 +785,7 @@ int usb_serial_probe(struct usb_interface *interface,
port->number = i + serial->minor;
port->serial = serial;
spin_lock_init(&port->lock);
sema_init(&port->sem, 1);
INIT_WORK(&port->work, usb_serial_port_softint, port);
serial->port[i] = port;
}
Expand Down
4 changes: 4 additions & 0 deletions trunk/drivers/usb/serial/usb-serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <linux/config.h>
#include <linux/kref.h>
#include <asm/semaphore.h>

#define SERIAL_TTY_MAJOR 188 /* Nice legal number now */
#define SERIAL_TTY_MINORS 255 /* loads of devices :) */
Expand All @@ -30,6 +31,8 @@
* @serial: pointer back to the struct usb_serial owner of this port.
* @tty: pointer to the corresponding tty for this port.
* @lock: spinlock to grab when updating portions of this structure.
* @sem: semaphore used to synchronize serial_open() and serial_close()
* access for this port.
* @number: the number of the port (the minor number).
* @interrupt_in_buffer: pointer to the interrupt in buffer for this port.
* @interrupt_in_urb: pointer to the interrupt in struct urb for this port.
Expand Down Expand Up @@ -60,6 +63,7 @@ struct usb_serial_port {
struct usb_serial * serial;
struct tty_struct * tty;
spinlock_t lock;
struct semaphore sem;
unsigned char number;

unsigned char * interrupt_in_buffer;
Expand Down

0 comments on commit 8ce0f7b

Please sign in to comment.