[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAFBinCD+9asM9-+kGEa3PhurxGqP9UwmP4aNCN9gNQPeMUyhiQ@mail.gmail.com>
Date: Sat, 12 Jun 2021 21:57:03 +0200
From: Martin Blumenstingl <martin.blumenstingl@...glemail.com>
To: zpershuai <zpershuai@...il.com>
Cc: Mark Brown <broonie@...nel.org>,
Neil Armstrong <narmstrong@...libre.com>,
Kevin Hilman <khilman@...libre.com>,
Jerome Brunet <jbrunet@...libre.com>,
linux-spi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-amlogic@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Fix some wrong goto jumps for avoiding memory leak.
Hello,
On Wed, Jun 9, 2021 at 4:22 PM zpershuai <zpershuai@...il.com> 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
Powered by blists - more mailing lists