Re: [PATCH] clocksource/drivers/davinci: Fix memory leak in davinci_timer_register

From: Markus Elfring
Date: Tue Oct 22 2019 - 05:12:55 EST


> In the impelementation of davinci_timer_register() the allocated memory
> for clockevent should be released if request_irq() fails.

* Please avoid the copying of typos from previous change descriptions.

* Under which circumstances will an âimperative moodâ matter for you here?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?id=7d194c2100ad2a6dded545887d02754948ca5241#n151


> +++ b/drivers/clocksource/timer-davinci.c
> @@ -299,6 +299,7 @@ int __init davinci_timer_register(struct clk *clk,
> "clockevent/tim12", clockevent);
> if (rv) {
> pr_err("Unable to request the clockevent interrupt");
> + kfree(clockevent);
> return rv;
> }

* Should a complete source code analysis point out that a similar fix
will be needed also in the if branch after a failed call of
the function âclocksource_register_hzâ?

* Can any more exception handling become relevant because of previous
resource allocations in this function implementation?

Regards,
Markus