From: Jiri Slaby Date: Sat, 10 Feb 2007 09:44:42 +0000 (-0800) Subject: [PATCH] Char: tty, delete wake_up_interruptible after tty_wakeup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dd65aa6690e30fdad84a62191c7ab37da89d9865;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git [PATCH] Char: tty, delete wake_up_interruptible after tty_wakeup 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 Cc: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index c57b1f43465..305e46db70e 100644 --- a/drivers/char/tty_io.c +++ b/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);