diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-12 08:44:27 +0900 |
---|---|---|
committer | Masami Hiramatsu (Google) <mhiramat@kernel.org> | 2024-06-12 08:44:27 +0900 |
commit | 1b3c86eeea7594eeeb49b8d1c1db0a40f0ce7920 (patch) | |
tree | 9b2289fc635947dba91db3e8271279fdd51b5fc9 /samples | |
parent | df216f57522c2ebe6e301f873195420de7992aa8 (diff) | |
download | linux-stable-1b3c86eeea7594eeeb49b8d1c1db0a40f0ce7920.tar.gz linux-stable-1b3c86eeea7594eeeb49b8d1c1db0a40f0ce7920.tar.bz2 linux-stable-1b3c86eeea7594eeeb49b8d1c1db0a40f0ce7920.zip |
samples: kprobes: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kprobes/kprobe_example.o
WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kprobes/kretprobe_example.o
Add the missing invocations of the MODULE_DESCRIPTION() macro.
Link: https://lore.kernel.org/all/20240601-md-samples-kprobes-v1-1-b6a772353893@quicinc.com/
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/kprobes/kprobe_example.c | 1 | ||||
-rw-r--r-- | samples/kprobes/kretprobe_example.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/samples/kprobes/kprobe_example.c b/samples/kprobes/kprobe_example.c index ef44c614c6d9..53ec6c8b8c40 100644 --- a/samples/kprobes/kprobe_example.c +++ b/samples/kprobes/kprobe_example.c @@ -125,4 +125,5 @@ static void __exit kprobe_exit(void) module_init(kprobe_init) module_exit(kprobe_exit) +MODULE_DESCRIPTION("sample kernel module showing the use of kprobes"); MODULE_LICENSE("GPL"); diff --git a/samples/kprobes/kretprobe_example.c b/samples/kprobes/kretprobe_example.c index ed79fd3d48fb..65d6dcafd742 100644 --- a/samples/kprobes/kretprobe_example.c +++ b/samples/kprobes/kretprobe_example.c @@ -104,4 +104,5 @@ static void __exit kretprobe_exit(void) module_init(kretprobe_init) module_exit(kretprobe_exit) +MODULE_DESCRIPTION("sample kernel module showing the use of return probes"); MODULE_LICENSE("GPL"); |