Browse Source

serial: sh-sci: Stop RX FIFO timer during port shutdown

The RX FIFO timer may be armed when the port is shut down, hence the
timer function may still be called afterwards.

Fix this race condition by deleting the timer during port shutdown.

Fixes: 039403765e5da3c6 ("serial: sh-sci: SCIFA/B RX FIFO software timeout")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Geert Uytterhoeven 7 years ago
parent
commit
c5a9262fa8
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/tty/serial/sh-sci.c

+ 2 - 0
drivers/tty/serial/sh-sci.c

@@ -2099,6 +2099,8 @@ static void sci_shutdown(struct uart_port *port)
 	}
 	}
 #endif
 #endif
 
 
+	if (s->rx_trigger > 1 && s->rx_fifo_timeout > 0)
+		del_timer_sync(&s->rx_fifo_timer);
 	sci_free_irq(s);
 	sci_free_irq(s);
 	sci_free_dma(port);
 	sci_free_dma(port);
 }
 }