* [PATCH 1/3] Char: n_r3964, fix lock imbalance
@ 2009-06-19 21:08 Jiri Slaby
2009-06-19 21:08 ` [PATCH 2/3] Char: pcmcia/cm4000, " Jiri Slaby
2009-06-19 21:08 ` [PATCH 3/3] Char: vt_ioctl, " Jiri Slaby
0 siblings, 2 replies; 3+ messages in thread
From: Jiri Slaby @ 2009-06-19 21:08 UTC (permalink / raw)
To: alan; +Cc: akpm, linux-kernel, Jiri Slaby
There is omitted BKunL in r3964_read.
Centralize the paths to one point with one unlock.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
---
drivers/char/n_r3964.c | 26 ++++++++++++++------------
1 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/drivers/char/n_r3964.c b/drivers/char/n_r3964.c
index d2e93e3..2e99158 100644
--- a/drivers/char/n_r3964.c
+++ b/drivers/char/n_r3964.c
@@ -1062,7 +1062,7 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
struct r3964_client_info *pClient;
struct r3964_message *pMsg;
struct r3964_client_message theMsg;
- int count;
+ int ret;
TRACE_L("read()");
@@ -1074,8 +1074,8 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
if (pMsg == NULL) {
/* no messages available. */
if (file->f_flags & O_NONBLOCK) {
- unlock_kernel();
- return -EAGAIN;
+ ret = -EAGAIN;
+ goto unlock;
}
/* block until there is a message: */
wait_event_interruptible(pInfo->read_wait,
@@ -1085,29 +1085,31 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
/* If we still haven't got a message, we must have been signalled */
if (!pMsg) {
- unlock_kernel();
- return -EINTR;
+ ret = -EINTR;
+ goto unlock;
}
/* deliver msg to client process: */
theMsg.msg_id = pMsg->msg_id;
theMsg.arg = pMsg->arg;
theMsg.error_code = pMsg->error_code;
- count = sizeof(struct r3964_client_message);
+ ret = sizeof(struct r3964_client_message);
kfree(pMsg);
TRACE_M("r3964_read - msg kfree %p", pMsg);
- if (copy_to_user(buf, &theMsg, count)) {
- unlock_kernel();
- return -EFAULT;
+ if (copy_to_user(buf, &theMsg, ret)) {
+ ret = -EFAULT;
+ goto unlock;
}
- TRACE_PS("read - return %d", count);
- return count;
+ TRACE_PS("read - return %d", ret);
+ goto unlock;
}
+ ret = -EPERM;
+unlock:
unlock_kernel();
- return -EPERM;
+ return ret;
}
static ssize_t r3964_write(struct tty_struct *tty, struct file *file,
--
1.6.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/3] Char: pcmcia/cm4000, fix lock imbalance
2009-06-19 21:08 [PATCH 1/3] Char: n_r3964, fix lock imbalance Jiri Slaby
@ 2009-06-19 21:08 ` Jiri Slaby
2009-06-19 21:08 ` [PATCH 3/3] Char: vt_ioctl, " Jiri Slaby
1 sibling, 0 replies; 3+ messages in thread
From: Jiri Slaby @ 2009-06-19 21:08 UTC (permalink / raw)
To: alan; +Cc: akpm, linux-kernel, Jiri Slaby
Don't return from switch/case, break instead, so that we unlock BKL.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
---
drivers/char/pcmcia/cm4000_cs.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/char/pcmcia/cm4000_cs.c b/drivers/char/pcmcia/cm4000_cs.c
index dbb9125..881934c 100644
--- a/drivers/char/pcmcia/cm4000_cs.c
+++ b/drivers/char/pcmcia/cm4000_cs.c
@@ -1575,7 +1575,8 @@ static long cmm_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
clear_bit(LOCK_IO, &dev->flags);
wake_up_interruptible(&dev->ioq);
- return 0;
+ rc = 0;
+ break;
case CM_IOCSPTS:
{
struct ptsreq krnptsreq;
--
1.6.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 3/3] Char: vt_ioctl, fix lock imbalance
2009-06-19 21:08 [PATCH 1/3] Char: n_r3964, fix lock imbalance Jiri Slaby
2009-06-19 21:08 ` [PATCH 2/3] Char: pcmcia/cm4000, " Jiri Slaby
@ 2009-06-19 21:08 ` Jiri Slaby
1 sibling, 0 replies; 3+ messages in thread
From: Jiri Slaby @ 2009-06-19 21:08 UTC (permalink / raw)
To: alan; +Cc: akpm, linux-kernel, Jiri Slaby
Don't return from switch/case directly in vt_ioctl. Set ret and break
instead so that we unlock BKL.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
---
drivers/char/vt_ioctl.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c
index e6ce632..7539bed 100644
--- a/drivers/char/vt_ioctl.c
+++ b/drivers/char/vt_ioctl.c
@@ -396,7 +396,8 @@ int vt_ioctl(struct tty_struct *tty, struct file * file,
kbd = kbd_table + console;
switch (cmd) {
case TIOCLINUX:
- return tioclinux(tty, arg);
+ ret = tioclinux(tty, arg);
+ break;
case KIOCSOUND:
if (!perm)
goto eperm;
--
1.6.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-06-19 21:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-19 21:08 [PATCH 1/3] Char: n_r3964, fix lock imbalance Jiri Slaby
2009-06-19 21:08 ` [PATCH 2/3] Char: pcmcia/cm4000, " Jiri Slaby
2009-06-19 21:08 ` [PATCH 3/3] Char: vt_ioctl, " Jiri Slaby
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox