diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-04-30 03:53:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:41 -0400 |
commit | 0ee9cbb3c705903db9c258047d9ce87096e6a1a1 (patch) | |
tree | ba3b3a4b85ef19cf8c4e3019e813603a160bb039 /drivers/char/tty_ioctl.c | |
parent | 5d0fdf1e01899805b6c2c0b789a707dcb731b1ea (diff) |
tty_ioctl: locking for tty_wait_until_sent
This function still depends on the big kernel lock in some cases. Push
locking into the function ready for removal of the BKL from ioctl call paths.
Signed-off-by: Alan Cox <alan@redhat.com>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/tty_ioctl.c')
-rw-r--r-- | drivers/char/tty_ioctl.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/char/tty_ioctl.c b/drivers/char/tty_ioctl.c index d6353d89b451..851cfcd2702a 100644 --- a/drivers/char/tty_ioctl.c +++ b/drivers/char/tty_ioctl.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/module.h> | 21 | #include <linux/module.h> |
22 | #include <linux/bitops.h> | 22 | #include <linux/bitops.h> |
23 | #include <linux/mutex.h> | 23 | #include <linux/mutex.h> |
24 | #include <linux/smp_lock.h> | ||
24 | 25 | ||
25 | #include <asm/io.h> | 26 | #include <asm/io.h> |
26 | #include <asm/uaccess.h> | 27 | #include <asm/uaccess.h> |
@@ -61,11 +62,13 @@ void tty_wait_until_sent(struct tty_struct *tty, long timeout) | |||
61 | return; | 62 | return; |
62 | if (!timeout) | 63 | if (!timeout) |
63 | timeout = MAX_SCHEDULE_TIMEOUT; | 64 | timeout = MAX_SCHEDULE_TIMEOUT; |
65 | lock_kernel(); | ||
64 | if (wait_event_interruptible_timeout(tty->write_wait, | 66 | if (wait_event_interruptible_timeout(tty->write_wait, |
65 | !tty->driver->chars_in_buffer(tty), timeout) < 0) | 67 | !tty->driver->chars_in_buffer(tty), timeout) >= 0) { |
66 | return; | 68 | if (tty->driver->wait_until_sent) |
67 | if (tty->driver->wait_until_sent) | 69 | tty->driver->wait_until_sent(tty, timeout); |
68 | tty->driver->wait_until_sent(tty, timeout); | 70 | } |
71 | unlock_kernel(); | ||
69 | } | 72 | } |
70 | EXPORT_SYMBOL(tty_wait_until_sent); | 73 | EXPORT_SYMBOL(tty_wait_until_sent); |
71 | 74 | ||