Re: [PATCH v2] clocksource/drivers: Fix memory leak in ttc_setup_clockevent

From: Markus Elfring
Date: Wed Oct 23 2019 - 04:00:47 EST


> In the implementation of ttc_setup_clockevent() release the allocated
> memory for ttcce if clk_notifier_register() fails.

I got other wording preferences. Thus I imagine that such a change
description can still be improved another bit.
Would you like to express the addition of a jump target (according to
the Linux coding style) for the completion of desired exception handling
in a different way?


â
> +++ b/drivers/clocksource/timer-cadence-ttc.c
â
> @@ -453,15 +451,18 @@ static int __init ttc_setup_clockevent(struct clk *clk,
â
> +release_ttcce:
> +
> + kfree(ttcce);
â

I would prefer that a blank line will not be added directly after such a label.

Regards,
Markus