[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20251123070905.93652-2-sidharthseela@gmail.com>
Date: Sun, 23 Nov 2025 12:39:06 +0530
From: Sidharth Seela <sidharthseela@...il.com>
To: claudiu.beznea@...on.dev,
alexandre.belloni@...tlin.com,
nicolas.ferre@...rochip.com,
sboyd@...nel.org,
mturquette@...libre.com
Cc: linux-clk@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org,
david.hunter.linux@...il.com,
skhan@...uxfoundation.org,
khalid@...nel.org,
Sidharth Seela <sidharthseela@...il.com>
Subject: [RFT PATCH v2] Use kmalloc_array() instead of kmalloc()
Refactor to new API, for cases with dynamic size calculations
inside kmalloc(). Such calculations were found using grep in the
sources. The patch compiles properly with multi_v7_defconfig
and multi_v5_defconfig and generates object files for the following
driver files.
Signed-off-by: Sidharth Seela <sidharthseela@...il.com>
---
Changelog:
v1:https://lore.kernel.org/all/20250924145552.55058-1-sidharthseela@gmail.com/
-refactor code and run checkpatch.
-use sizeof(*ptr) not sizeof(void*).
-add RFT and the how the issue was found.
diff --git a/drivers/clk/at91/sam9x7.c b/drivers/clk/at91/sam9x7.c
index 89868a0aeaba..01bf557034e0 100644
--- a/drivers/clk/at91/sam9x7.c
+++ b/drivers/clk/at91/sam9x7.c
@@ -754,9 +754,9 @@ static void __init sam9x7_pmc_setup(struct device_node *np)
if (!sam9x7_pmc)
return;
- clk_mux_buffer = kmalloc(sizeof(void *) *
- (ARRAY_SIZE(sam9x7_gck)),
- GFP_KERNEL);
+ clk_mux_buffer = kmalloc_array(ARRAY_SIZE(sam9x7_gck),
+ sizeof(*clk_mux_buffer),
+ GFP_KERNEL);
if (!clk_mux_buffer)
goto err_free;
diff --git a/drivers/clk/at91/sama7d65.c b/drivers/clk/at91/sama7d65.c
index 7dee2b160ffb..91a5615f724a 100644
--- a/drivers/clk/at91/sama7d65.c
+++ b/drivers/clk/at91/sama7d65.c
@@ -1127,9 +1127,9 @@ static void __init sama7d65_pmc_setup(struct device_node *np)
if (!sama7d65_pmc)
return;
- alloc_mem = kmalloc(sizeof(void *) *
- (ARRAY_SIZE(sama7d65_mckx) + ARRAY_SIZE(sama7d65_gck)),
- GFP_KERNEL);
+ alloc_mem = kmalloc_array(ARRAY_SIZE(sama7d65_mckx) + ARRAY_SIZE(sama7d65_gck),
+ sizeof(*alloc_mem),
+ GFP_KERNEL);
if (!alloc_mem)
goto err_free;
diff --git a/drivers/clk/at91/sama7g5.c b/drivers/clk/at91/sama7g5.c
index 1340c2b00619..a12381f6c068 100644
--- a/drivers/clk/at91/sama7g5.c
+++ b/drivers/clk/at91/sama7g5.c
@@ -1004,9 +1004,9 @@ static void __init sama7g5_pmc_setup(struct device_node *np)
if (!sama7g5_pmc)
return;
- alloc_mem = kmalloc(sizeof(void *) *
- (ARRAY_SIZE(sama7g5_mckx) + ARRAY_SIZE(sama7g5_gck)),
- GFP_KERNEL);
+ alloc_mem = kmalloc_array(ARRAY_SIZE(sama7g5_mckx) + ARRAY_SIZE(sama7g5_gck),
+ sizeof(*alloc_mem),
+ GFP_KERNEL);
if (!alloc_mem)
goto err_free;
--
2.43.0
Powered by blists - more mailing lists