diff options
author | Alan Cox <alan@linux.intel.com> | 2009-11-30 08:18:45 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 18:18:08 -0500 |
commit | 5ec93d1154fd1e269162398f8e70efc7e004485d (patch) | |
tree | 2a76835812d3502b036a7234faeaa0f6ba0356da /drivers/char | |
parent | 38c70b27f9502c31c1d0c29676275f7362cdb0d9 (diff) |
tty: Move the leader test in disassociate
There are two call points, both want to check that tty->signal->leader is
set. Move the test into disassociate_ctty() as that will make locking
changes easier in a bit
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tty_io.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index cc941a3504d7..a19fef2093f1 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -707,6 +707,8 @@ void disassociate_ctty(int on_exit) | |||
707 | struct tty_struct *tty; | 707 | struct tty_struct *tty; |
708 | struct pid *tty_pgrp = NULL; | 708 | struct pid *tty_pgrp = NULL; |
709 | 709 | ||
710 | if (!current->signal->leader) | ||
711 | return; | ||
710 | 712 | ||
711 | tty = get_current_tty(); | 713 | tty = get_current_tty(); |
712 | if (tty) { | 714 | if (tty) { |
@@ -772,8 +774,7 @@ void no_tty(void) | |||
772 | { | 774 | { |
773 | struct task_struct *tsk = current; | 775 | struct task_struct *tsk = current; |
774 | lock_kernel(); | 776 | lock_kernel(); |
775 | if (tsk->signal->leader) | 777 | disassociate_ctty(0); |
776 | disassociate_ctty(0); | ||
777 | unlock_kernel(); | 778 | unlock_kernel(); |
778 | proc_clear_tty(tsk); | 779 | proc_clear_tty(tsk); |
779 | } | 780 | } |