From: Eric Biggers Date: Mon, 24 Feb 2020 07:34:50 +0000 (-0800) Subject: vt: drop redundant might_sleep() in do_con_write() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c57c1644c266a42579dccd919c11d247be48cca5;p=linux.git vt: drop redundant might_sleep() in do_con_write() The might_sleep() in do_con_write() is redundant because console_lock() already contains might_sleep(). Remove it. Signed-off-by: Eric Biggers Link: https://lore.kernel.org/r/20200224073450.292892-1-ebiggers@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index c4d75edde9239..2123bb09214c5 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c @@ -2577,8 +2577,6 @@ static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int co if (in_interrupt()) return count; - might_sleep(); - console_lock(); vc = tty->driver_data; if (vc == NULL) {