Skip to content

Commit c61fae9

Browse files
Julia Lawallgregkh
authored andcommitted
serial: drivers/serial/pmac_zilog.c: add missing unlock
In an error handling case the lock is not unlocked. A simplified version of the semantic patch that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r exists@ expression E1; identifier f; @@ f (...) { <+... * spin_lock_irqsave (E1,...); ... when != E1 * return ...; ...+> } // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
1 parent d990166 commit c61fae9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/serial/pmac_zilog.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,8 +752,10 @@ static void pmz_break_ctl(struct uart_port *port, int break_state)
752752
uap->curregs[R5] = new_reg;
753753

754754
/* NOTE: Not subject to 'transmitter active' rule. */
755-
if (ZS_IS_ASLEEP(uap))
755+
if (ZS_IS_ASLEEP(uap)) {
756+
spin_unlock_irqrestore(&port->lock, flags);
756757
return;
758+
}
757759
write_zsreg(uap, R5, uap->curregs[R5]);
758760
}
759761

0 commit comments

Comments
 (0)