Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

bpf: preload: Add MODULE_DESCRIPTION

Modpost complains when extra warnings are enabled:

WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/bpf/preload/bpf_preload.o

Add a description from the Kconfig help text.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20250310134920.4123633-1-arnd@kernel.org

----
Not sure if that description actually fits what the module does. If not,
please add a different description instead.

Signed-off-by: Alexei Starovoitov <ast@kernel.org>

authored by

Arnd Bergmann and committed by
Alexei Starovoitov
38c6104e 02a46941

+1
+1
kernel/bpf/preload/bpf_preload_kern.c
··· 90 90 late_initcall(load); 91 91 module_exit(fini); 92 92 MODULE_LICENSE("GPL"); 93 + MODULE_DESCRIPTION("Embedded BPF programs for introspection in bpffs");