serial: 8250_dw: Fix deadlock in LCR workaround
authorPeter Hurley <peter@hurleysoftware.com>
Wed, 11 Mar 2015 13:19:16 +0000 (09:19 -0400)
committerJiri Slaby <jslaby@suse.cz>
Sat, 14 Nov 2015 17:58:27 +0000 (18:58 +0100)
commit9bc623ed14f83e2facf5ada94405d39c2a7be3fd
treefea7342900504f63b901bb9197d7eac91f4fcbd7
parent30dd76cda0dccffcfa12f66913c6fe8b1b8ef396
serial: 8250_dw: Fix deadlock in LCR workaround

commit 7fd6f640f2dd17dac6ddd6702c378cb0bb9cfa11 upstream.

Trying to write console output from within the serial console driver
while the port->lock is held causes recursive deadlock:

  CPU 0
spin_lock_irqsave(&port->lock)
printk()
  console_unlock()
    call_console_drivers()
      serial8250_console_write()
        spin_lock_irqsave(&port->lock)
** DEADLOCK **

The 8250_dw i/o accessors try to write a console error message if the
LCR workaround was unsuccessful. When the port->lock is already held
(eg., when called from serial8250_set_termios()), this deadlocks.

Make the error message a FIXME until a general solution is devised.

Cc: Tim Kryger <tim.kryger@gmail.com>
Reported-by: Zhang Zhen <zhenzhang.zhang@huawei.com>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/tty/serial/8250/8250_dw.c