The patch titled Char: tty, delete wake_up_interruptible after tty_wakeup has been added to the -mm tree. Its filename is char-tty-delete-wake_up_interruptible-after-tty_wakeup.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Char: tty, delete wake_up_interruptible after tty_wakeup From: Jiri Slaby <jirislaby@xxxxxxxxx> tty_wakeup calls wake_up_interruptible(&tty->write_wait) itself, it's not needed to wake up again after tty_wakeup returns. Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tty_io.c | 1 - 1 files changed, 1 deletion(-) diff -puN drivers/char/tty_io.c~char-tty-delete-wake_up_interruptible-after-tty_wakeup drivers/char/tty_io.c --- a/drivers/char/tty_io.c~char-tty-delete-wake_up_interruptible-after-tty_wakeup +++ a/drivers/char/tty_io.c @@ -1612,7 +1612,6 @@ void start_tty(struct tty_struct *tty) /* If we have a running line discipline it may need kicking */ tty_wakeup(tty); - wake_up_interruptible(&tty->write_wait); } EXPORT_SYMBOL(start_tty); _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch isicom-fix-build-with-pci-disabled.patch mxser_new-fix-non-pci-build.patch sx-fix-non-pci-build.patch char-tty-delete-wake_up_interruptible-after-tty_wakeup.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