serial: sh-sci: protect invalidating RXDMA on shutdown
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Mon, 6 May 2024 11:40:17 +0000 (13:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 May 2024 10:48:33 +0000 (11:48 +0100)
commitaae20f6e34cd0cbd67a1d0e5877561c40109a81b
tree0994f638e147ca290367b94a85d306435b92b62e
parent6bd23e0c2bb6c65d4f5754d1456bc9a4427fc59b
serial: sh-sci: protect invalidating RXDMA on shutdown

The to-be-fixed commit removed locking when invalidating the DMA RX
descriptors on shutdown. It overlooked that there is still a rx_timer
running which may still access the protected data. So, re-add the
locking.

Reported-by: Dirk Behme <dirk.behme@de.bosch.com>
Closes: https://lore.kernel.org/r/ee6c9e16-9f29-450e-81da-4a8dceaa8fc7@de.bosch.com
Fixes: 2c4ee23530ff ("serial: sh-sci: Postpone DMA release when falling back to PIO")
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20240506114016.30498-7-wsa+renesas@sang-engineering.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sh-sci.c