projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d730a42
)
lib/test_rhashtable: add missing MODULE_DESCRIPTION() macro
author
Jeff Johnson
<quic_jjohnson@quicinc.com>
Sat, 1 Jun 2024 01:35:43 +0000
(18:35 -0700)
committer
Jakub Kicinski
<kuba@kernel.org>
Tue, 4 Jun 2024 01:51:18 +0000
(18:51 -0700)
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_rhashtable.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link:
https://lore.kernel.org/r/20240531-md-lib-test_rhashtable-v1-1-cd6d4138f1b6@quicinc.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
lib/test_rhashtable.c
patch
|
blob
|
history
diff --git
a/lib/test_rhashtable.c
b/lib/test_rhashtable.c
index
42b5852
..
c63db03
100644
(file)
--- a/
lib/test_rhashtable.c
+++ b/
lib/test_rhashtable.c
@@
-811,4
+811,5
@@
static void __exit test_rht_exit(void)
module_init(test_rht_init);
module_exit(test_rht_exit);
+MODULE_DESCRIPTION("Resizable, Scalable, Concurrent Hash Table test module");
MODULE_LICENSE("GPL v2");