Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25727
b: refs/heads/master
c: 1ce7dd2
h: refs/heads/master
i:
  25725: b1fc67e
  25723: 4c4b16f
  25719: 7eab255
  25711: 0ee72fd
  25695: 71f01d0
  25663: 82f9aec
  25599: e77db04
v: v3
  • Loading branch information
Luiz Fernando Capitulino authored and Greg Kroah-Hartman committed Apr 14, 2006
1 parent ed3875d commit a3c4671
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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: 14cd5f8e85e90c9dead2393377b9a2c23131e0ce
refs/heads/master: 1ce7dd26e0f0e34bb75ec56f7f546151af34fcf9
16 changes: 8 additions & 8 deletions trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/spinlock.h>
#include <linux/mutex.h>
#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 @@ -192,7 +192,7 @@ static int serial_open (struct tty_struct *tty, struct file * filp)
if (!port)
return -ENODEV;

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

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

up(&port->sem);
mutex_unlock(&port->mutex);
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);
mutex_unlock(&port->mutex);
return retval;
}

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

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

down(&port->sem);
mutex_lock(&port->mutex);

if (port->open_count == 0) {
up(&port->sem);
mutex_unlock(&port->mutex);
return;
}

Expand All @@ -262,7 +262,7 @@ static void serial_close(struct tty_struct *tty, struct file * filp)
module_put(port->serial->type->driver.owner);
}

up(&port->sem);
mutex_unlock(&port->mutex);
kref_put(&port->serial->kref, destroy_serial);
}

Expand Down Expand Up @@ -783,7 +783,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);
mutex_init(&port->mutex);
INIT_WORK(&port->work, usb_serial_port_softint, port);
serial->port[i] = port;
}
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/usb/serial/usb-serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

#define SERIAL_TTY_MAJOR 188 /* Nice legal number now */
#define SERIAL_TTY_MINORS 255 /* loads of devices :) */
Expand All @@ -31,7 +31,7 @@
* @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()
* @mutex: mutex 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.
Expand Down Expand Up @@ -63,7 +63,7 @@ struct usb_serial_port {
struct usb_serial * serial;
struct tty_struct * tty;
spinlock_t lock;
struct semaphore sem;
struct mutex mutex;
unsigned char number;

unsigned char * interrupt_in_buffer;
Expand Down

0 comments on commit a3c4671

Please sign in to comment.