mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 20:30:26 -04:00
Conversion performed via this Coccinelle script:
// SPDX-License-Identifier: GPL-2.0-only
// Options: --include-headers-for-types --all-includes --include-headers --keep-comments
virtual patch
@gfp depends on patch && !(file in "tools") && !(file in "samples")@
identifier ALLOC = {kmalloc_obj,kmalloc_objs,kmalloc_flex,
kzalloc_obj,kzalloc_objs,kzalloc_flex,
kvmalloc_obj,kvmalloc_objs,kvmalloc_flex,
kvzalloc_obj,kvzalloc_objs,kvzalloc_flex};
@@
ALLOC(...
- , GFP_KERNEL
)
$ make coccicheck MODE=patch COCCI=gfp.cocci
Build and boot tested x86_64 with Fedora 42's GCC and Clang:
Linux version 6.19.0+ (user@host) (gcc (GCC) 15.2.1 20260123 (Red Hat 15.2.1-7), GNU ld version 2.44-12.fc42) #1 SMP PREEMPT_DYNAMIC 1970-01-01
Linux version 6.19.0+ (user@host) (clang version 20.1.8 (Fedora 20.1.8-4.fc42), LLD 20.1.8) #1 SMP PREEMPT_DYNAMIC 1970-01-01
Signed-off-by: Kees Cook <kees@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
113 lines
2.6 KiB
C
113 lines
2.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Data Access Monitor Unit Tests
|
|
*
|
|
* Author: SeongJae Park <sj@kernel.org>
|
|
*/
|
|
|
|
#ifdef CONFIG_DAMON_SYSFS_KUNIT_TEST
|
|
|
|
#ifndef _DAMON_SYSFS_TEST_H
|
|
#define _DAMON_SYSFS_TEST_H
|
|
|
|
#include <kunit/test.h>
|
|
|
|
static unsigned int nr_damon_targets(struct damon_ctx *ctx)
|
|
{
|
|
struct damon_target *t;
|
|
unsigned int nr_targets = 0;
|
|
|
|
damon_for_each_target(t, ctx)
|
|
nr_targets++;
|
|
|
|
return nr_targets;
|
|
}
|
|
|
|
static int __damon_sysfs_test_get_any_pid(int min, int max)
|
|
{
|
|
struct pid *pid;
|
|
int i;
|
|
|
|
for (i = min; i <= max; i++) {
|
|
pid = find_get_pid(i);
|
|
if (pid) {
|
|
put_pid(pid);
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
static void damon_sysfs_test_add_targets(struct kunit *test)
|
|
{
|
|
struct damon_sysfs_targets *sysfs_targets;
|
|
struct damon_sysfs_target *sysfs_target;
|
|
struct damon_ctx *ctx;
|
|
|
|
sysfs_targets = damon_sysfs_targets_alloc();
|
|
if (!sysfs_targets)
|
|
kunit_skip(test, "sysfs_targets alloc fail");
|
|
sysfs_targets->nr = 1;
|
|
sysfs_targets->targets_arr = kmalloc_objs(*sysfs_targets->targets_arr,
|
|
1);
|
|
if (!sysfs_targets->targets_arr) {
|
|
kfree(sysfs_targets);
|
|
kunit_skip(test, "targets_arr alloc fail");
|
|
}
|
|
|
|
sysfs_target = damon_sysfs_target_alloc();
|
|
if (!sysfs_target) {
|
|
kfree(sysfs_targets->targets_arr);
|
|
kfree(sysfs_targets);
|
|
kunit_skip(test, "sysfs_target alloc fail");
|
|
}
|
|
sysfs_target->pid = __damon_sysfs_test_get_any_pid(12, 100);
|
|
sysfs_target->regions = damon_sysfs_regions_alloc();
|
|
if (!sysfs_target->regions) {
|
|
kfree(sysfs_targets->targets_arr);
|
|
kfree(sysfs_targets);
|
|
kfree(sysfs_target);
|
|
kunit_skip(test, "sysfs_regions alloc fail");
|
|
}
|
|
|
|
sysfs_targets->targets_arr[0] = sysfs_target;
|
|
|
|
ctx = damon_new_ctx();
|
|
if (!ctx) {
|
|
kfree(sysfs_targets->targets_arr);
|
|
kfree(sysfs_targets);
|
|
kfree(sysfs_target->regions);
|
|
kfree(sysfs_target);
|
|
kunit_skip(test, "ctx alloc fail");
|
|
}
|
|
|
|
damon_sysfs_add_targets(ctx, sysfs_targets);
|
|
KUNIT_EXPECT_EQ(test, 1u, nr_damon_targets(ctx));
|
|
|
|
sysfs_target->pid = __damon_sysfs_test_get_any_pid(
|
|
sysfs_target->pid + 1, 200);
|
|
damon_sysfs_add_targets(ctx, sysfs_targets);
|
|
KUNIT_EXPECT_EQ(test, 2u, nr_damon_targets(ctx));
|
|
|
|
damon_destroy_ctx(ctx);
|
|
kfree(sysfs_targets->targets_arr);
|
|
kfree(sysfs_targets);
|
|
kfree(sysfs_target->regions);
|
|
kfree(sysfs_target);
|
|
}
|
|
|
|
static struct kunit_case damon_sysfs_test_cases[] = {
|
|
KUNIT_CASE(damon_sysfs_test_add_targets),
|
|
{},
|
|
};
|
|
|
|
static struct kunit_suite damon_sysfs_test_suite = {
|
|
.name = "damon-sysfs",
|
|
.test_cases = damon_sysfs_test_cases,
|
|
};
|
|
kunit_test_suite(damon_sysfs_test_suite);
|
|
|
|
#endif /* _DAMON_SYSFS_TEST_H */
|
|
|
|
#endif /* CONFIG_DAMON_SYSFS_KUNIT_TEST */
|