Message ID | 20210720100116.1438974-1-mudongliangabcd@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | spi: meson-spicc: fix memory leak in meson_spicc_remove | expand |
On Tue, 20 Jul 2021 18:01:16 +0800, Dongliang Mu wrote: > In meson_spicc_probe, the error handling code needs to clean up master > by calling spi_master_put, but the remove function does not have this > function call. This will lead to memory leak of spicc->master. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: meson-spicc: fix memory leak in meson_spicc_remove commit: 8311ee2164c5cd1b63a601ea366f540eae89f10e 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 --git a/drivers/spi/spi-meson-spicc.c b/drivers/spi/spi-meson-spicc.c index b2c4621db34d..c208efeadd18 100644 --- a/drivers/spi/spi-meson-spicc.c +++ b/drivers/spi/spi-meson-spicc.c @@ -785,6 +785,8 @@ static int meson_spicc_remove(struct platform_device *pdev) clk_disable_unprepare(spicc->core); clk_disable_unprepare(spicc->pclk); + spi_master_put(spicc->master); + return 0; }
In meson_spicc_probe, the error handling code needs to clean up master by calling spi_master_put, but the remove function does not have this function call. This will lead to memory leak of spicc->master. Reported-by: Dongliang Mu <mudongliangabcd@gmail.com> Fixes: 454fa271bc4e("spi: Add Meson SPICC driver") Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com> --- drivers/spi/spi-meson-spicc.c | 2 ++ 1 file changed, 2 insertions(+)