Re: [PATCH] Fix some wrong goto jumps for avoiding memory leak.

From: Martin Blumenstingl
Date: Sat Jun 12 2021 - 16:04:45 EST


Hello,

On Wed, Jun 9, 2021 at 4:22 PM zpershuai <zpershuai@xxxxxxxxx> wrote:
>
> In meson_spifc_probe function, when enable the device pclk clock is
> error, it should use clk_disable_unprepare to release the core clock.
>
> And when meson_spicc_clk_init returns failed, it should goto the
> out_clk label.
After reviewing your patch I agree with your findings!
So thank you very much for bringing this up and sending a fix

The subject of this patch does not match what we usually have
Can you please make it start with "spi: meson-spicc:" (see git log
drivers/spi/spi-meson-spicc.c)

[...]
> device_reset_optional(&pdev->dev);
> @@ -752,7 +752,7 @@ static int meson_spicc_probe(struct platform_device *pdev)
> ret = meson_spicc_clk_init(spicc);
> if (ret) {
> dev_err(&pdev->dev, "clock registration failed\n");
> - goto out_master;
> + goto out_clk;
> }
I'd prefer this part to go into a separate patch so that separate
patch can get the following Fixes tag (which should then be added
above your Signed-off-by):
Fixes: 3e0cf4d3fc29 ("spi: meson-spicc: add a linear clock divider support")

The remaining changes (to my understanding) should get:
Fixes: 454fa271bc4e ("spi: Add Meson SPICC driver")

The "Fixes" tag is relevant so bug-fixes can be backported to older
kernel versions automatically.

So it would be great if you could send a second version with the above
changes considered.


Thank you and best regards,
Martin