forked from Minki/linux
serial: bfin_sport_uart: protect changes to uart_port
Common serial API says we need to grab the port lock before modifying the port state to prevent inconsistent state between threads. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1f7d1c85df
commit
9498dc95ca
@ -498,6 +498,8 @@ static void sport_set_termios(struct uart_port *port,
|
|||||||
/* up->parib = 1; */
|
/* up->parib = 1; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
spin_lock_irqsave(&up->port.lock, flags);
|
||||||
|
|
||||||
port->read_status_mask = OE;
|
port->read_status_mask = OE;
|
||||||
if (termios->c_iflag & INPCK)
|
if (termios->c_iflag & INPCK)
|
||||||
port->read_status_mask |= (FE | PE);
|
port->read_status_mask |= (FE | PE);
|
||||||
@ -538,8 +540,6 @@ static void sport_set_termios(struct uart_port *port,
|
|||||||
/* uart baud rate */
|
/* uart baud rate */
|
||||||
port->uartclk = uart_get_baud_rate(port, termios, old, 0, get_sclk()/16);
|
port->uartclk = uart_get_baud_rate(port, termios, old, 0, get_sclk()/16);
|
||||||
|
|
||||||
spin_lock_irqsave(&up->port.lock, flags);
|
|
||||||
|
|
||||||
/* Disable UART */
|
/* Disable UART */
|
||||||
SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
|
SPORT_PUT_TCR1(up, SPORT_GET_TCR1(up) & ~TSPEN);
|
||||||
SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
|
SPORT_PUT_RCR1(up, SPORT_GET_RCR1(up) & ~RSPEN);
|
||||||
|
Loading…
Reference in New Issue
Block a user