mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
sparc: serial: sunhv: fix a double lock bug
[ Upstream commit344e3c7734] We accidentally take the "port->lock" twice in a row. This old code was supposed to be deleted. Fixes:e58e241c17('sparc: serial: Clean up the locking for -rt') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a395f7a66e
commit
4e90b68801
|
|
@ -490,12 +490,6 @@ static void sunhv_console_write_bychar(struct console *con, const char *s, unsig
|
|||
locked = spin_trylock_irqsave(&port->lock, flags);
|
||||
else
|
||||
spin_lock_irqsave(&port->lock, flags);
|
||||
if (port->sysrq) {
|
||||
locked = 0;
|
||||
} else if (oops_in_progress) {
|
||||
locked = spin_trylock(&port->lock);
|
||||
} else
|
||||
spin_lock(&port->lock);
|
||||
|
||||
for (i = 0; i < n; i++) {
|
||||
if (*s == '\n')
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user