diff mbox series

spi: mediatek: Avoid NULL pointer crash in interrupt

Message ID 20220131141708.888710-1-benjamin.gaignard@collabora.com (mailing list archive)
State Accepted
Commit f83a96e5f033fbbd21764705cb9c04234b96218e
Headers show
Series spi: mediatek: Avoid NULL pointer crash in interrupt | expand

Commit Message

Benjamin Gaignard Jan. 31, 2022, 2:17 p.m. UTC
In some case, like after a transfer timeout, master->cur_msg pointer
is NULL which led to a kernel crash when trying to use master->cur_msg->spi.
mtk_spi_can_dma(), pointed by master->can_dma, doesn't use this parameter
avoid the problem by setting NULL as second parameter.

Fixes: a568231f46322 ("spi: mediatek: Add spi bus for Mediatek MT8173")
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
---
 drivers/spi/spi-mt65xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mark Brown Jan. 31, 2022, 4:39 p.m. UTC | #1
On Mon, 31 Jan 2022 15:17:08 +0100, Benjamin Gaignard wrote:
> In some case, like after a transfer timeout, master->cur_msg pointer
> is NULL which led to a kernel crash when trying to use master->cur_msg->spi.
> mtk_spi_can_dma(), pointed by master->can_dma, doesn't use this parameter
> avoid the problem by setting NULL as second parameter.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-linus

Thanks!

[1/1] spi: mediatek: Avoid NULL pointer crash in interrupt
      commit: f83a96e5f033fbbd21764705cb9c04234b96218e

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c
index a15de10ee286..753bd313e6fd 100644
--- a/drivers/spi/spi-mt65xx.c
+++ b/drivers/spi/spi-mt65xx.c
@@ -624,7 +624,7 @@  static irqreturn_t mtk_spi_interrupt(int irq, void *dev_id)
 	else
 		mdata->state = MTK_SPI_IDLE;
 
-	if (!master->can_dma(master, master->cur_msg->spi, trans)) {
+	if (!master->can_dma(master, NULL, trans)) {
 		if (trans->rx_buf) {
 			cnt = mdata->xfer_len / 4;
 			ioread32_rep(mdata->base + SPI_RX_DATA_REG,