diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-12 03:52:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:31 -0500 |
commit | 2ea81868d8fba0bb56d7b45a08cc5f15dd2c6bb2 (patch) | |
tree | 69b6df2015e315a5dcd0b8388c0cf4c6416734a5 | |
parent | 680a96710041c3c25464b5e093b80ca43cb94f52 (diff) |
[PATCH] tty: fix the locking for signal->session in disassociate_ctty
commit 24ec839c431eb79bb8f6abc00c4e1eb3b8c4d517 while fixing the locking for
signal->tty got the locking wrong for signal->session. This places our
accesses of signal->session back under the tasklist_lock where they belong.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/char/tty_io.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index ac937f767f23..abfe24d28c51 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -1496,7 +1496,6 @@ void disassociate_ctty(int on_exit) | |||
1496 | { | 1496 | { |
1497 | struct tty_struct *tty; | 1497 | struct tty_struct *tty; |
1498 | int tty_pgrp = -1; | 1498 | int tty_pgrp = -1; |
1499 | int session; | ||
1500 | 1499 | ||
1501 | lock_kernel(); | 1500 | lock_kernel(); |
1502 | 1501 | ||
@@ -1530,7 +1529,6 @@ void disassociate_ctty(int on_exit) | |||
1530 | 1529 | ||
1531 | spin_lock_irq(¤t->sighand->siglock); | 1530 | spin_lock_irq(¤t->sighand->siglock); |
1532 | current->signal->tty_old_pgrp = 0; | 1531 | current->signal->tty_old_pgrp = 0; |
1533 | session = process_session(current); | ||
1534 | spin_unlock_irq(¤t->sighand->siglock); | 1532 | spin_unlock_irq(¤t->sighand->siglock); |
1535 | 1533 | ||
1536 | mutex_lock(&tty_mutex); | 1534 | mutex_lock(&tty_mutex); |
@@ -1549,7 +1547,7 @@ void disassociate_ctty(int on_exit) | |||
1549 | 1547 | ||
1550 | /* Now clear signal->tty under the lock */ | 1548 | /* Now clear signal->tty under the lock */ |
1551 | read_lock(&tasklist_lock); | 1549 | read_lock(&tasklist_lock); |
1552 | session_clear_tty(session); | 1550 | session_clear_tty(process_session(current)); |
1553 | read_unlock(&tasklist_lock); | 1551 | read_unlock(&tasklist_lock); |
1554 | unlock_kernel(); | 1552 | unlock_kernel(); |
1555 | } | 1553 | } |