Skip to content

Commit 202c467

Browse files
committed
pty_write: don't do a tty_wakeup() when the buffers are full
Commit ac89a91 ("pty: don't limit the writes to 'pty_space()' inside 'pty_write()'") removed the pty_space() checking, in order to let the regular tty buffer code limit the buffering itself. That was all good, but as a subtle side effect it meant that we'd be doing a tty_wakeup() even in the case where the buffers were all filled up, and didn't actually make any progress on the write. Which sounds innocuous, but it interacts very badly with the ppp_async code, which has an infinite loop in ppp_async_push() that tries to push out data to the tty. When we call tty_wakeup(), that loop ends up thinking that progress was made (see the subtle interactions between XMIT_WAKEUP and 'tty_stuffed' for details). End result: one unhappy ppp user. Fixed by noticing when tty_insert_flip_string() didn't actually do anything, and then not doing any more processing (including, very much not calling tty_wakeup()). Bisected-and-tested-by: Peter Volkov <pva@gentoo.org> Cc: stable@kernel.org (2.6.31) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent df58bee commit 202c467

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/char/pty.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
120120
/* Stuff the data into the input queue of the other end */
121121
c = tty_insert_flip_string(to, buf, c);
122122
/* And shovel */
123-
tty_flip_buffer_push(to);
124-
tty_wakeup(tty);
123+
if (c) {
124+
tty_flip_buffer_push(to);
125+
tty_wakeup(tty);
126+
}
125127
}
126128
return c;
127129
}

0 commit comments

Comments
 (0)