[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6f3b159f-a3cc-4072-aae8-9792c9d274cd@web.de>
Date: Sun, 24 Dec 2023 17:38:39 +0100
From: Markus Elfring <Markus.Elfring@....de>
To: linux-omap@...r.kernel.org, linux-clk@...r.kernel.org,
kernel-janitors@...r.kernel.org,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Claudiu Beznea <claudiu.beznea@...on.dev>,
Michael Turquette <mturquette@...libre.com>, Rob Herring <robh@...nel.org>,
Stephen Boyd <sboyd@...nel.org>, Tero Kristo <kristo@...nel.org>,
Tony Lindgren <tony@...mide.com>
Cc: LKML <linux-kernel@...r.kernel.org>, cocci@...ia.fr
Subject: [PATCH 02/10] clk: ti: Less function calls in of_dra7_apll_setup()
after error detection
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Sun, 24 Dec 2023 12:27:09 +0100
The kfree() function was called in up to four cases by
the of_dra7_apll_setup() function during error handling
even if the passed variable contained a null pointer.
This issue was detected by using the Coccinelle software.
* Split a condition check.
* Adjust jump targets.
* Delete four initialisations which became unnecessary
with this refactoring.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/clk/ti/apll.c | 28 ++++++++++++++++++----------
1 file changed, 18 insertions(+), 10 deletions(-)
diff --git a/drivers/clk/ti/apll.c b/drivers/clk/ti/apll.c
index 929c021f0cdb..d2be672521a3 100644
--- a/drivers/clk/ti/apll.c
+++ b/drivers/clk/ti/apll.c
@@ -177,17 +177,22 @@ static void __init omap_clk_register_apll(void *user,
static void __init of_dra7_apll_setup(struct device_node *node)
{
- struct dpll_data *ad = NULL;
- struct clk_hw_omap *clk_hw = NULL;
- struct clk_init_data *init = NULL;
- const char **parent_names = NULL;
+ struct dpll_data *ad;
+ struct clk_hw_omap *clk_hw;
+ struct clk_init_data *init = kzalloc(sizeof(*init), GFP_KERNEL);
+ const char **parent_names;
int ret;
- ad = kzalloc(sizeof(*ad), GFP_KERNEL);
+ if (!init)
+ return;
+
clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
- init = kzalloc(sizeof(*init), GFP_KERNEL);
- if (!ad || !clk_hw || !init)
- goto cleanup;
+ if (!clk_hw)
+ goto free_init;
+
+ ad = kzalloc(sizeof(*ad), GFP_KERNEL);
+ if (!ad)
+ goto free_clk_hw;
clk_hw->dpll_data = ad;
clk_hw->hw.init = init;
@@ -198,12 +203,12 @@ static void __init of_dra7_apll_setup(struct device_node *node)
init->num_parents = of_clk_get_parent_count(node);
if (init->num_parents < 1) {
pr_err("dra7 apll %pOFn must have parent(s)\n", node);
- goto cleanup;
+ goto free_ad;
}
parent_names = kcalloc(init->num_parents, sizeof(char *), GFP_KERNEL);
if (!parent_names)
- goto cleanup;
+ goto free_ad;
of_clk_parent_fill(node, parent_names, init->num_parents);
@@ -223,8 +228,11 @@ static void __init of_dra7_apll_setup(struct device_node *node)
cleanup:
kfree(parent_names);
+free_ad:
kfree(ad);
+free_clk_hw:
kfree(clk_hw);
+free_init:
kfree(init);
}
CLK_OF_DECLARE(dra7_apll_clock, "ti,dra7-apll-clock", of_dra7_apll_setup);
--
2.43.0
Powered by blists - more mailing lists