diff mbox series

[v3] wifi: cfg80211: Use kmemdup_array instead of kmemdup for multiple allocation

Message ID 20240822024242.1203161-1-yujiaoliang@vivo.com (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series [v3] wifi: cfg80211: Use kmemdup_array instead of kmemdup for multiple allocation | expand

Checks

Context Check Description
netdev/series_format warning Single patches do not need cover letters; Target tree name not specified in the subject
netdev/tree_selection success Guessed tree name to be net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 16 this patch: 16
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 6 of 6 maintainers
netdev/build_clang success Errors and warnings before: 16 this patch: 16
netdev/verify_signedoff fail author Signed-off-by missing
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 16 this patch: 16
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 10 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest fail net-next-2024-08-22--06-00 (tests: 712)

Commit Message

Yu Jiaoliang Aug. 22, 2024, 2:42 a.m. UTC
Let the kememdup_array() take care about multiplication and possible
overflows.

---
v2:
-Change sizeof(limits[0]) to sizeof(*limits)
-Fix title prefix

v3:
-Fix R-b tag
-Leave --- above this information

Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
Reviewed-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 net/wireless/util.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Kalle Valo Aug. 22, 2024, 6:59 a.m. UTC | #1
Yu Jiaoliang <yujiaoliang@vivo.com> writes:

> Let the kememdup_array() take care about multiplication and possible
> overflows.
>
> ---
> v2:
> -Change sizeof(limits[0]) to sizeof(*limits)
> -Fix title prefix
>
> v3:
> -Fix R-b tag
> -Leave --- above this information
>
> Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
> Reviewed-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>

Now Signed-off-by and Reviewed-by are in the wrong location. Please
carefully read the wiki page below how to submit patches.
Yu Jiaoliang Aug. 23, 2024, 7:56 a.m. UTC | #2
在 2024/8/22 14:59, Kalle Valo 写道:
> [Some people who received this message don't often get email from kvalo@kernel.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
>
> Yu Jiaoliang <yujiaoliang@vivo.com> writes:
>
>> Let the kememdup_array() take care about multiplication and possible
>> overflows.
>>
>> ---
>> v2:
>> -Change sizeof(limits[0]) to sizeof(*limits)
>> -Fix title prefix
>>
>> v3:
>> -Fix R-b tag
>> -Leave --- above this information
>>
>> Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
>> Reviewed-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> Now Signed-off-by and Reviewed-by are in the wrong location. Please
> carefully read the wiki page below how to submit patches.
>
> --
> https://patchwork.kernel.org/project/linux-wireless/list/
>
> https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

Hi Kalle,

I have updated the position of the changelog and submitted patch v4. 
Thank you.

Best Regards,

Yu
diff mbox series

Patch

diff --git a/net/wireless/util.c b/net/wireless/util.c
index 9a7c3adc8a3b..e7c1ac2a0f2d 100644
--- a/net/wireless/util.c
+++ b/net/wireless/util.c
@@ -2435,8 +2435,8 @@  int cfg80211_iter_combinations(struct wiphy *wiphy,
 		if (params->num_different_channels > c->num_different_channels)
 			continue;
 
-		limits = kmemdup(c->limits, sizeof(limits[0]) * c->n_limits,
-				 GFP_KERNEL);
+		limits = kmemdup_array(c->limits, c->n_limits, sizeof(*limits),
+				       GFP_KERNEL);
 		if (!limits)
 			return -ENOMEM;