--- linux/drivers/char/n_tty.c.orig 2008-07-01 10:48:05.000000000 -0500 +++ linux/drivers/char/n_tty.c 2008-07-01 11:20:07.000000000 -0500 @@ -759,20 +759,9 @@ signal = SIGTSTP; if (c == SUSP_CHAR(tty)) { send_signal: - /* - * Echo character, and then send the signal. - * Note that we do not use isig() here because we want - * the order to be: - * 1) flush, 2) echo, 3) signal - */ - if (!L_NOFLSH(tty)) { - n_tty_flush_buffer(tty); - tty_driver_flush_buffer(tty); - } + isig(signal, tty, 0); if (L_ECHO(tty)) echo_char(c, tty); - if (tty->pgrp) - kill_pgrp(tty->pgrp, signal, 1); return; } }