Re: [PATCH] clocksource/drivers/timer-fsl-ftm: Fix clk reference leak in error paths
From: krzk
Date: Mon Sep 21 2026 - 11:39:29 EST
On Tue, 15 Sep 2026 05:02:58 +0000, Wentao Liang wrote:
> __ftm_clk_init() obtains clock references with of_clk_get_by_name() but
> never releases them on the error paths. If clk_prepare_enable() fails on
> the counter clock, the reference is leaked. The second of_clk_get_by_name()
> also overwrites the first clk pointer, so a failure to get or prepare the
> ftm clock loses the counter clock reference as well; on the get failure
> path the counter clock is left enabled and unreferenced.
>
> Release the references on the error paths: clk_put() when prepare+enable
> fails, and clk_disable_unprepare() followed by clk_put() when aborting
> after the counter clock has been enabled. The clocks intentionally stay
> enabled on the success path, so those are left untouched.
>
> Fixes: 2529c3a33079 ("clocksource: Add Freescale FlexTimer Module (FTM) timer support")
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Wentao Liang <vulab@xxxxxxxxxxx>
> ---
> drivers/clocksource/timer-fsl-ftm.c | 25 +++++++++++++++++--------
> 1 file changed, 17 insertions(+), 8 deletions(-)
>
You sent multiple independent patches, to multiple independent
subsystems. The amount of these patches clearly suggest this was
AI generated and most likely not tested.
More importantly, you sent all this work without properly organizing
relevant patches into patchsets. This makes reviewing difficult
and might cause multiple reviewers to address the same issue.
Replying to the entire set is impossible and requires handling each
patch independently, instead of applying or discarding the set.
Maintainers also won't see the bigger picture of your work. Quite
worrying.
This is on the verge of hostile patch: bomb us with so many
contributions, we won't be able to handle them in efficient manner,
like responding ONCE to ask you to slow down. Considering all this
is untested and LLM generated, I have even more doubts whether this
should be considered for review.
Please read kernel documentation BEFORE posting more work. It will
explain you how to identify subsystems, how to organize your work per
subsystem, how to document usage of LLM and how what you should not
do if this was posted in a good faith.
Best regards,
Krzysztof