summaryrefslogtreecommitdiffstats
path: root/drivers/tty/n_tty.c
diff options
context:
space:
mode:
authorPeter Hurley2016-01-10 06:45:12 +0100
committerGreg Kroah-Hartman2016-01-28 20:58:02 +0100
commit7bccc36544a8b4a7d768f8ccdd6001a52872aca9 (patch)
tree31560d1f0eaba903fbe7dd2d3032988ddfadb189 /drivers/tty/n_tty.c
parenttty: Fix ioctl(FIOASYNC) on hungup file (diff)
downloadkernel-qcow2-linux-7bccc36544a8b4a7d768f8ccdd6001a52872aca9.tar.gz
kernel-qcow2-linux-7bccc36544a8b4a7d768f8ccdd6001a52872aca9.tar.xz
kernel-qcow2-linux-7bccc36544a8b4a7d768f8ccdd6001a52872aca9.zip
n_tty: Fix stuck write wakeup
If signal-driven i/o is disabled while write wakeup is pending (ie., n_tty_write() has set TTY_DO_WRITE_WAKEUP but then signal-driven i/o is disabled), the TTY_DO_WRITE_WAKEUP bit will never be cleared and will cause tty_wakeup() to always call n_tty_write_wakeup. Unconditionally clear the write wakeup, and since kill_fasync() already checks if the fasync ptr is null, call kill_fasync() unconditionally as well. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/n_tty.c')
-rw-r--r--drivers/tty/n_tty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c
index a93e4c7e82ae..086fd9983caa 100644
--- a/drivers/tty/n_tty.c
+++ b/drivers/tty/n_tty.c
@@ -228,8 +228,8 @@ static ssize_t chars_in_buffer(struct tty_struct *tty)
static void n_tty_write_wakeup(struct tty_struct *tty)
{
- if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
- kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
+ clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
+ kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
}
static void n_tty_check_throttle(struct tty_struct *tty)