The patch titled fix-serial-buffer-memory-leak-fix has been removed from the -mm tree. Its filename was fix-serial-buffer-memory-leak-fix.patch This patch was dropped because it was folded into fix-serial-buffer-memory-leak.patch ------------------------------------------------------ Subject: fix-serial-buffer-memory-leak-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxx> Cc: Laurent Pinchart <laurentp@xxxxxxxxxxxxxxxxx> Cc: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/tty_io.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/char/tty_io.c~fix-serial-buffer-memory-leak-fix drivers/char/tty_io.c --- a/drivers/char/tty_io.c~fix-serial-buffer-memory-leak-fix +++ a/drivers/char/tty_io.c @@ -412,10 +412,10 @@ static void tty_buffer_flush(struct tty_ if (test_bit(TTY_FLUSHING, &tty->flags)) { set_bit(TTY_FLUSHPENDING, &tty->flags); spin_unlock_irqrestore(&tty->buf.lock, flags); - wait_event(tty->read_wait, test_bit(TTY_FLUSHPENDING, &tty->flags) == 0); - return; - } - else + wait_event(tty->read_wait, + test_bit(TTY_FLUSHPENDING, &tty->flags) == 0); + return; + } else __tty_buffer_flush(tty); spin_unlock_irqrestore(&tty->buf.lock, flags); } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are fbcon-kill-compile-warning.patch fix-serial-buffer-memory-leak.patch fix-serial-buffer-memory-leak-fix.patch mtdchar-build-fix.patch fix-compilation-with-gcc-42-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html