]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
spi: geni-qcom: Fix incorrect free_irq() sequence
authorJinjie Ruan <ruanjinjie@huawei.com>
Mon, 9 Sep 2024 07:31:40 +0000 (15:31 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Sep 2024 17:24:10 +0000 (19:24 +0200)
[ Upstream commit b787a33864121a565aeb0e88561bf6062a19f99c ]

In spi_geni_remove(), the free_irq() sequence is different from that
on the probe error path. And the IRQ will still remain and it's interrupt
handler may use the dma channel after release dma channel and before free
irq, which is not secure, fix it.

Fixes: b59c122484ec ("spi: spi-geni-qcom: Add support for GPI dma")
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://patch.msgid.link/20240909073141.951494-3-ruanjinjie@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/spi/spi-geni-qcom.c

index 983c4896c8cfc75f9a12f5a1472aef688f220a90..7401ed3b9acd40a0c0601f3fe2e14d33f9466900 100644 (file)
@@ -1170,9 +1170,9 @@ static void spi_geni_remove(struct platform_device *pdev)
        /* Unregister _before_ disabling pm_runtime() so we stop transfers */
        spi_unregister_master(spi);
 
-       spi_geni_release_dma_chan(mas);
-
        free_irq(mas->irq, spi);
+
+       spi_geni_release_dma_chan(mas);
 }
 
 static int __maybe_unused spi_geni_runtime_suspend(struct device *dev)