[PATCH] isdn4linux: Siemens Gigaset drivers: mutex conversion
With Hansjoerg Lipp <hjlipp@web.de> Convert the semaphores used by the Gigaset drivers to mutexes. Signed-off-by: Hansjoerg Lipp <hjlipp@web.de> Signed-off-by: Tilman Schmidt <tilman@imap.cc> Cc: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
01371500b2
commit
abfd1dc7c1
|
@ -408,7 +408,7 @@ void gigaset_freecs(struct cardstate *cs)
|
||||||
if (!cs)
|
if (!cs)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
if (!cs->bcs)
|
if (!cs->bcs)
|
||||||
goto f_cs;
|
goto f_cs;
|
||||||
|
@ -459,7 +459,7 @@ void gigaset_freecs(struct cardstate *cs)
|
||||||
f_bcs: gig_dbg(DEBUG_INIT, "freeing bcs[]");
|
f_bcs: gig_dbg(DEBUG_INIT, "freeing bcs[]");
|
||||||
kfree(cs->bcs);
|
kfree(cs->bcs);
|
||||||
f_cs: gig_dbg(DEBUG_INIT, "freeing cs");
|
f_cs: gig_dbg(DEBUG_INIT, "freeing cs");
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
free_cs(cs);
|
free_cs(cs);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(gigaset_freecs);
|
EXPORT_SYMBOL_GPL(gigaset_freecs);
|
||||||
|
@ -652,7 +652,9 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
|
||||||
spin_lock_init(&cs->ev_lock);
|
spin_lock_init(&cs->ev_lock);
|
||||||
atomic_set(&cs->ev_tail, 0);
|
atomic_set(&cs->ev_tail, 0);
|
||||||
atomic_set(&cs->ev_head, 0);
|
atomic_set(&cs->ev_head, 0);
|
||||||
init_MUTEX_LOCKED(&cs->sem);
|
mutex_init(&cs->mutex);
|
||||||
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
tasklet_init(&cs->event_tasklet, &gigaset_handle_event,
|
tasklet_init(&cs->event_tasklet, &gigaset_handle_event,
|
||||||
(unsigned long) cs);
|
(unsigned long) cs);
|
||||||
atomic_set(&cs->commands_pending, 0);
|
atomic_set(&cs->commands_pending, 0);
|
||||||
|
@ -729,11 +731,11 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
|
||||||
add_timer(&cs->timer);
|
add_timer(&cs->timer);
|
||||||
|
|
||||||
gig_dbg(DEBUG_INIT, "cs initialized");
|
gig_dbg(DEBUG_INIT, "cs initialized");
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
return cs;
|
return cs;
|
||||||
|
|
||||||
error: if (cs)
|
error: if (cs)
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
gig_dbg(DEBUG_INIT, "failed");
|
gig_dbg(DEBUG_INIT, "failed");
|
||||||
gigaset_freecs(cs);
|
gigaset_freecs(cs);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -831,7 +833,7 @@ static void cleanup_cs(struct cardstate *cs)
|
||||||
|
|
||||||
int gigaset_start(struct cardstate *cs)
|
int gigaset_start(struct cardstate *cs)
|
||||||
{
|
{
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
atomic_set(&cs->connected, 1);
|
atomic_set(&cs->connected, 1);
|
||||||
|
@ -861,18 +863,18 @@ int gigaset_start(struct cardstate *cs)
|
||||||
/* set up device sysfs */
|
/* set up device sysfs */
|
||||||
gigaset_init_dev_sysfs(cs);
|
gigaset_init_dev_sysfs(cs);
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(gigaset_start);
|
EXPORT_SYMBOL_GPL(gigaset_start);
|
||||||
|
|
||||||
void gigaset_shutdown(struct cardstate *cs)
|
void gigaset_shutdown(struct cardstate *cs)
|
||||||
{
|
{
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
cs->waiting = 1;
|
cs->waiting = 1;
|
||||||
|
|
||||||
|
@ -902,13 +904,13 @@ void gigaset_shutdown(struct cardstate *cs)
|
||||||
cleanup_cs(cs);
|
cleanup_cs(cs);
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(gigaset_shutdown);
|
EXPORT_SYMBOL_GPL(gigaset_shutdown);
|
||||||
|
|
||||||
void gigaset_stop(struct cardstate *cs)
|
void gigaset_stop(struct cardstate *cs)
|
||||||
{
|
{
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
/* clear device sysfs */
|
/* clear device sysfs */
|
||||||
gigaset_free_dev_sysfs(cs);
|
gigaset_free_dev_sysfs(cs);
|
||||||
|
@ -936,7 +938,7 @@ void gigaset_stop(struct cardstate *cs)
|
||||||
cleanup_cs(cs);
|
cleanup_cs(cs);
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(gigaset_stop);
|
EXPORT_SYMBOL_GPL(gigaset_stop);
|
||||||
|
|
||||||
|
|
|
@ -497,7 +497,7 @@ struct cardstate {
|
||||||
int cs_init;
|
int cs_init;
|
||||||
int ignoreframes; /* frames to ignore after setting up the
|
int ignoreframes; /* frames to ignore after setting up the
|
||||||
B channel */
|
B channel */
|
||||||
struct semaphore sem; /* locks this structure:
|
struct mutex mutex; /* locks this structure:
|
||||||
* connected is not changed,
|
* connected is not changed,
|
||||||
* hardware_up is not changed,
|
* hardware_up is not changed,
|
||||||
* MState is not changed to or from
|
* MState is not changed to or from
|
||||||
|
|
|
@ -160,7 +160,7 @@ static int if_open(struct tty_struct *tty, struct file *filp)
|
||||||
if (!cs)
|
if (!cs)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
tty->driver_data = cs;
|
tty->driver_data = cs;
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ static int if_open(struct tty_struct *tty, struct file *filp)
|
||||||
tty->low_latency = 1; //FIXME test
|
tty->low_latency = 1; //FIXME test
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ static void if_close(struct tty_struct *tty, struct file *filp)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
warn("%s: device not opened", __func__);
|
warn("%s: device not opened", __func__);
|
||||||
|
@ -202,7 +202,7 @@ static void if_close(struct tty_struct *tty, struct file *filp)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int if_ioctl(struct tty_struct *tty, struct file *file,
|
static int if_ioctl(struct tty_struct *tty, struct file *file,
|
||||||
|
@ -222,7 +222,7 @@ static int if_ioctl(struct tty_struct *tty, struct file *file,
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s(0x%x)", cs->minor_index, __func__, cmd);
|
gig_dbg(DEBUG_IF, "%u: %s(0x%x)", cs->minor_index, __func__, cmd);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
|
@ -279,7 +279,7 @@ static int if_ioctl(struct tty_struct *tty, struct file *file,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -297,13 +297,13 @@ static int if_tiocmget(struct tty_struct *tty, struct file *file)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
// FIXME read from device?
|
// FIXME read from device?
|
||||||
retval = cs->control_state & (TIOCM_RTS|TIOCM_DTR);
|
retval = cs->control_state & (TIOCM_RTS|TIOCM_DTR);
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -324,7 +324,7 @@ static int if_tiocmset(struct tty_struct *tty, struct file *file,
|
||||||
gig_dbg(DEBUG_IF, "%u: %s(0x%x, 0x%x)",
|
gig_dbg(DEBUG_IF, "%u: %s(0x%x, 0x%x)",
|
||||||
cs->minor_index, __func__, set, clear);
|
cs->minor_index, __func__, set, clear);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
if (!atomic_read(&cs->connected)) {
|
if (!atomic_read(&cs->connected)) {
|
||||||
|
@ -336,7 +336,7 @@ static int if_tiocmset(struct tty_struct *tty, struct file *file,
|
||||||
cs->control_state = mc;
|
cs->control_state = mc;
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -354,7 +354,7 @@ static int if_write(struct tty_struct *tty, const unsigned char *buf, int count)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
|
@ -370,7 +370,7 @@ static int if_write(struct tty_struct *tty, const unsigned char *buf, int count)
|
||||||
&cs->if_wake_tasklet);
|
&cs->if_wake_tasklet);
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -388,7 +388,7 @@ static int if_write_room(struct tty_struct *tty)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
|
@ -402,7 +402,7 @@ static int if_write_room(struct tty_struct *tty)
|
||||||
} else
|
} else
|
||||||
retval = cs->ops->write_room(cs);
|
retval = cs->ops->write_room(cs);
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -420,7 +420,7 @@ static int if_chars_in_buffer(struct tty_struct *tty)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
|
@ -434,7 +434,7 @@ static int if_chars_in_buffer(struct tty_struct *tty)
|
||||||
} else
|
} else
|
||||||
retval = cs->ops->chars_in_buffer(cs);
|
retval = cs->ops->chars_in_buffer(cs);
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -451,7 +451,7 @@ static void if_throttle(struct tty_struct *tty)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
warn("%s: device not opened", __func__);
|
warn("%s: device not opened", __func__);
|
||||||
|
@ -459,7 +459,7 @@ static void if_throttle(struct tty_struct *tty)
|
||||||
//FIXME
|
//FIXME
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void if_unthrottle(struct tty_struct *tty)
|
static void if_unthrottle(struct tty_struct *tty)
|
||||||
|
@ -474,7 +474,7 @@ static void if_unthrottle(struct tty_struct *tty)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
if (!cs->open_count)
|
if (!cs->open_count)
|
||||||
warn("%s: device not opened", __func__);
|
warn("%s: device not opened", __func__);
|
||||||
|
@ -482,7 +482,7 @@ static void if_unthrottle(struct tty_struct *tty)
|
||||||
//FIXME
|
//FIXME
|
||||||
}
|
}
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void if_set_termios(struct tty_struct *tty, struct termios *old)
|
static void if_set_termios(struct tty_struct *tty, struct termios *old)
|
||||||
|
@ -501,7 +501,7 @@ static void if_set_termios(struct tty_struct *tty, struct termios *old)
|
||||||
|
|
||||||
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
|
||||||
|
|
||||||
down(&cs->sem);
|
mutex_lock(&cs->mutex);
|
||||||
|
|
||||||
if (!cs->open_count) {
|
if (!cs->open_count) {
|
||||||
warn("%s: device not opened", __func__);
|
warn("%s: device not opened", __func__);
|
||||||
|
@ -586,7 +586,7 @@ static void if_set_termios(struct tty_struct *tty, struct termios *old)
|
||||||
cs->control_state = control_state;
|
cs->control_state = control_state;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,14 +37,14 @@ static ssize_t set_cidmode(struct device *dev, struct device_attribute *attr,
|
||||||
if (value < 0 || value > 1)
|
if (value < 0 || value > 1)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (down_interruptible(&cs->sem))
|
if (mutex_lock_interruptible(&cs->mutex))
|
||||||
return -ERESTARTSYS; // FIXME -EINTR?
|
return -ERESTARTSYS; // FIXME -EINTR?
|
||||||
|
|
||||||
cs->waiting = 1;
|
cs->waiting = 1;
|
||||||
if (!gigaset_add_event(cs, &cs->at_state, EV_PROC_CIDMODE,
|
if (!gigaset_add_event(cs, &cs->at_state, EV_PROC_CIDMODE,
|
||||||
NULL, value, NULL)) {
|
NULL, value, NULL)) {
|
||||||
cs->waiting = 0;
|
cs->waiting = 0;
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ static ssize_t set_cidmode(struct device *dev, struct device_attribute *attr,
|
||||||
|
|
||||||
wait_event(cs->waitqueue, !cs->waiting);
|
wait_event(cs->waitqueue, !cs->waiting);
|
||||||
|
|
||||||
up(&cs->sem);
|
mutex_unlock(&cs->mutex);
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue