summaryrefslogtreecommitdiff
path: root/drivers/resctrl
diff options
context:
space:
mode:
authorKees Cook <kees@kernel.org>2026-02-20 23:49:23 -0800
committerKees Cook <kees@kernel.org>2026-02-21 01:02:28 -0800
commit69050f8d6d075dc01af7a5f2f550a8067510366f (patch)
treebb265f94d9dfa7876c06a5d9f88673d496a15341 /drivers/resctrl
parentd39a1d7486d98668dd34aaa6732aad7977c45f5a (diff)
downloadlwn-69050f8d6d075dc01af7a5f2f550a8067510366f.tar.gz
lwn-69050f8d6d075dc01af7a5f2f550a8067510366f.zip
treewide: Replace kmalloc with kmalloc_obj for non-scalar types
This is the result of running the Coccinelle script from scripts/coccinelle/api/kmalloc_objs.cocci. The script is designed to avoid scalar types (which need careful case-by-case checking), and instead replace kmalloc-family calls that allocate struct or union object instances: Single allocations: kmalloc(sizeof(TYPE), ...) are replaced with: kmalloc_obj(TYPE, ...) Array allocations: kmalloc_array(COUNT, sizeof(TYPE), ...) are replaced with: kmalloc_objs(TYPE, COUNT, ...) Flex array allocations: kmalloc(struct_size(PTR, FAM, COUNT), ...) are replaced with: kmalloc_flex(*PTR, FAM, COUNT, ...) (where TYPE may also be *VAR) The resulting allocations no longer return "void *", instead returning "TYPE *". Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'drivers/resctrl')
-rw-r--r--drivers/resctrl/mpam_devices.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/resctrl/mpam_devices.c b/drivers/resctrl/mpam_devices.c
index b495d5291868..323dba59fce8 100644
--- a/drivers/resctrl/mpam_devices.c
+++ b/drivers/resctrl/mpam_devices.c
@@ -295,7 +295,7 @@ mpam_class_alloc(u8 level_idx, enum mpam_class_types type)
lockdep_assert_held(&mpam_list_lock);
- class = kzalloc(sizeof(*class), GFP_KERNEL);
+ class = kzalloc_obj(*class, GFP_KERNEL);
if (!class)
return ERR_PTR(-ENOMEM);
init_garbage(&class->garbage);
@@ -343,7 +343,7 @@ mpam_component_alloc(struct mpam_class *class, int id)
lockdep_assert_held(&mpam_list_lock);
- comp = kzalloc(sizeof(*comp), GFP_KERNEL);
+ comp = kzalloc_obj(*comp, GFP_KERNEL);
if (!comp)
return ERR_PTR(-ENOMEM);
init_garbage(&comp->garbage);
@@ -398,7 +398,7 @@ mpam_vmsc_alloc(struct mpam_component *comp, struct mpam_msc *msc)
lockdep_assert_held(&mpam_list_lock);
- vmsc = kzalloc(sizeof(*vmsc), GFP_KERNEL);
+ vmsc = kzalloc_obj(*vmsc, GFP_KERNEL);
if (!vmsc)
return ERR_PTR(-ENOMEM);
init_garbage(&vmsc->garbage);
@@ -2419,7 +2419,7 @@ static int __allocate_component_cfg(struct mpam_component *comp)
if (comp->cfg)
return 0;
- comp->cfg = kcalloc(mpam_partid_max + 1, sizeof(*comp->cfg), GFP_KERNEL);
+ comp->cfg = kzalloc_objs(*comp->cfg, mpam_partid_max + 1, GFP_KERNEL);
if (!comp->cfg)
return -ENOMEM;
@@ -2444,9 +2444,9 @@ static int __allocate_component_cfg(struct mpam_component *comp)
if (!ris->props.num_mbwu_mon)
continue;
- mbwu_state = kcalloc(ris->props.num_mbwu_mon,
- sizeof(*ris->mbwu_state),
- GFP_KERNEL);
+ mbwu_state = kzalloc_objs(*ris->mbwu_state,
+ ris->props.num_mbwu_mon,
+ GFP_KERNEL);
if (!mbwu_state) {
__destroy_component_cfg(comp);
return -ENOMEM;