From: Greg Kroah-Hartman Date: Sun, 4 Jun 2017 08:23:25 +0000 (+0200) Subject: Revert "tty: fix port buffer locking" X-Git-Tag: v4.14-rc1~794^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc098af16b9ff6d470d779d8ddcfb2d91869045a;p=platform%2Fkernel%2Flinux-rpi.git Revert "tty: fix port buffer locking" This reverts commit 925bb1ce47f429f69aad35876df7ecd8c53deb7e. It causes lots of warnings and problems so for now, let's just revert it. Reported-by: Reported-by: Russell King Reported-by: Sergey Senozhatsky Reported-by: Geert Uytterhoeven Reported-by: Jiri Slaby Reported-by: Andrey Konovalov Acked-by: Vegard Nossum Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty_port.c b/drivers/tty/tty_port.c index 4fb3165..6b13719 100644 --- a/drivers/tty/tty_port.c +++ b/drivers/tty/tty_port.c @@ -34,9 +34,7 @@ static int tty_port_default_receive_buf(struct tty_port *port, if (!disc) return 0; - mutex_lock(&tty->atomic_write_lock); ret = tty_ldisc_receive_buf(disc, p, (char *)f, count); - mutex_unlock(&tty->atomic_write_lock); tty_ldisc_deref(disc);