diff options
author | Claudio Scordino <[email protected]> | 2011-12-16 15:08:49 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-01-04 16:19:34 -0800 |
commit | dbf1115d3f8c7052788aa4e6e46abd27f3b3eeba (patch) | |
tree | 4536d5b6fd050c3acec08c62db51e25b81d58904 | |
parent | 106b5fa700bd1ff422382dc907d1ca97f0c3972d (diff) |
atmel_serial: fix spinlock lockup in RS485 code
Patch to fix a spinlock lockup in the driver that sometimes happens when the
tasklet starts.
Signed-off-by: Claudio Scordino <[email protected]>
Signed-off-by: Dave Bender <[email protected]>
Tested-by: Dave Bender <[email protected]>
Acked-by: Nicolas Ferre <[email protected]>
Acked-by: Alan Cox <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/atmel_serial.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c index bd85e32521d2..10605ecc99ab 100644 --- a/drivers/tty/serial/atmel_serial.c +++ b/drivers/tty/serial/atmel_serial.c @@ -212,8 +212,9 @@ void atmel_config_rs485(struct uart_port *port, struct serial_rs485 *rs485conf) { struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); unsigned int mode; + unsigned long flags; - spin_lock(&port->lock); + spin_lock_irqsave(&port->lock, flags); /* Disable interrupts */ UART_PUT_IDR(port, atmel_port->tx_done_mask); @@ -244,7 +245,7 @@ void atmel_config_rs485(struct uart_port *port, struct serial_rs485 *rs485conf) /* Enable interrupts */ UART_PUT_IER(port, atmel_port->tx_done_mask); - spin_unlock(&port->lock); + spin_unlock_irqrestore(&port->lock, flags); } |