projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce75e06
)
regmap: kunit: Replace a kmalloc/kfree() pair with KUnit-managed alloc
author
Richard Fitzgerald
<rf@opensource.cirrus.com>
Mon, 8 Apr 2024 14:45:58 +0000
(15:45 +0100)
committer
Mark Brown
<broonie@kernel.org>
Mon, 8 Apr 2024 15:38:13 +0000
(16:38 +0100)
Replace the kmalloc() and kfree() in raw_read_defaults() with a
kunit_kmalloc() so that KUnit will free it automatically.
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link:
https://msgid.link/r/20240408144600.230848-10-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/base/regmap/regmap-kunit.c
patch
|
blob
|
history
diff --git
a/drivers/base/regmap/regmap-kunit.c
b/drivers/base/regmap/regmap-kunit.c
index e21028cbddc39761b3fd9e003a6fd60445ff4b48..4c29d2db4d20cb40cf457ec6a1c0a1c2fc59d627 100644
(file)
--- a/
drivers/base/regmap/regmap-kunit.c
+++ b/
drivers/base/regmap/regmap-kunit.c
@@
-1360,7
+1360,7
@@
static void raw_read_defaults(struct kunit *test)
return;
val_len = sizeof(*rval) * (config.max_register + 1);
- rval = k
malloc(
val_len, GFP_KERNEL);
+ rval = k
unit_kmalloc(test,
val_len, GFP_KERNEL);
KUNIT_ASSERT_TRUE(test, rval != NULL);
if (!rval)
return;
@@
-1375,8
+1375,6
@@
static void raw_read_defaults(struct kunit *test)
KUNIT_EXPECT_EQ(test, def, le16_to_cpu((__force __le16)rval[i]));
}
}
-
- kfree(rval);
}
static void raw_write_read_single(struct kunit *test)