/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | kmod-path.c | 10 static int test(const char *path, bool alloc_name, bool kmod, in test() argument 20 pr_debug("%s - alloc name %d, kmod %d, comp %d, name '%s'\n", in test() 21 path, alloc_name, m.kmod, m.comp, m.name); in test() 23 TEST_ASSERT_VAL("wrong kmod", m.kmod == kmod); in test() 52 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 62 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 71 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 80 /* path alloc_name kmod com in test__kmod_path__parse() [all...] |
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | kmod-path.c | 10 static int test(const char *path, bool alloc_name, bool kmod, in test() argument 20 pr_debug("%s - alloc name %d, kmod %d, comp %d, name '%s'\n", in test() 21 path, alloc_name, m.kmod, m.comp, m.name); in test() 23 TEST_ASSERT_VAL("wrong kmod", m.kmod == kmod); in test() 52 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 62 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 71 /* path alloc_name kmod comp name */ in test__kmod_path__parse() 80 /* path alloc_name kmod com in test__kmod_path__parse() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/kmod/ |
H A D | Makefile | 2 # Makefile for kmod loading selftests 7 TEST_PROGS := kmod.sh
|
H A D | kmod.sh | 16 # This is a stress test script for kmod, the kernel module loader. It uses 20 # The way kmod works is it uses the kernel's usermode helper API to eventually 41 TEST_NAME="kmod" 108 MODPROBE_LIMIT_FILE="${PROC_DIR}/kmod-limit" 118 if ! which kmod 2> /dev/null > /dev/null; then 119 echo "$0: You need kmod installed" >&2 123 # kmod 19 has a bad bug where it returns 0 when modprobe 129 KMOD_VERSION=$(kmod --version | awk '{print $3}') 131 echo "$0: You need at least kmod 20" >&2 132 echo "kmod < [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/kmod/ |
H A D | Makefile | 2 # Makefile for kmod loading selftests 7 TEST_PROGS := kmod.sh
|
H A D | kmod.sh | 5 # This is a stress test script for kmod, the kernel module loader. It uses 9 # The way kmod works is it uses the kernel's usermode helper API to eventually 30 TEST_NAME="kmod" 97 MODPROBE_LIMIT_FILE="${PROC_DIR}/kmod-limit" 107 if ! which kmod 2> /dev/null > /dev/null; then 108 echo "$0: You need kmod installed" >&2 112 # kmod 19 has a bad bug where it returns 0 when modprobe 118 KMOD_VERSION=$(kmod --version | awk '{print $3}') 120 echo "$0: You need at least kmod 20" >&2 121 echo "kmod < [all...] |
/kernel/linux/linux-5.10/drivers/iio/ |
H A D | industrialio-configfs.c | 11 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/kernel/ |
H A D | exec_domain.c | 13 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/kernel/ |
H A D | exec_domain.c | 13 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/drivers/iio/ |
H A D | industrialio-configfs.c | 11 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/kernel/module/ |
H A D | Makefile | 12 obj-y += kmod.o
|
/kernel/linux/linux-6.6/drivers/media/pci/cx25821/ |
H A D | cx25821-video.h | 17 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/drivers/media/pci/cx25821/ |
H A D | cx25821-video.h | 17 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/drivers/mtd/chips/ |
H A D | chipreg.c | 9 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/net/ipv4/bpfilter/ |
H A D | sockopt.c | 8 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/net/netfilter/ipvs/ |
H A D | ip_vs_pe.c | 9 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/drivers/mtd/chips/ |
H A D | chipreg.c | 9 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/net/ipv4/bpfilter/ |
H A D | sockopt.c | 8 #include <linux/kmod.h>
|
/kernel/linux/linux-6.6/net/netfilter/ipvs/ |
H A D | ip_vs_pe.c | 9 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | dso.c | 271 return m.kmod; in is_kernel_module() 349 * @kmod - true if @path contains '.ko' suffix in right position, 351 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name 385 m->kmod = false; in __kmod_path__parse() 388 m->kmod = true; in __kmod_path__parse() 406 m->kmod = !strncmp(ext, ".ko", 3); in __kmod_path__parse() 409 if (m->kmod) { in __kmod_path__parse() 432 if (m->kmod && m->comp) { in dso__set_module_info()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | dso.c | 307 return m.kmod; in is_kernel_module() 392 * @kmod - true if @path contains '.ko' suffix in right position, 394 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name 428 m->kmod = false; in __kmod_path__parse() 431 m->kmod = true; in __kmod_path__parse() 449 m->kmod = !strncmp(ext, ".ko", 3); in __kmod_path__parse() 452 if (m->kmod) { in __kmod_path__parse() 475 if (m->kmod && m->comp) { in dso__set_module_info()
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-target.c | 11 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/drivers/media/pci/mantis/ |
H A D | mantis_pci.c | 14 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/drivers/net/ppp/ |
H A D | pppox.c | 29 #include <linux/kmod.h>
|
/kernel/linux/linux-5.10/drivers/net/usb/ |
H A D | cdc_subset.c | 8 #include <linux/kmod.h>
|