mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
KUnit: add missing MODULE_DESCRIPTION() macros for lib/test_*.ko
make allmodconfig && make W=1 C=1 reports for lib/test_*.ko: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_hexdump.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_dhry.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_firmware.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_sysctl.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_hash.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_ida.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_list_sort.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_min_heap.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_module.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_sort.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_static_keys.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_static_key_base.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_memcat_p.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_blackhole_dev.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_meminit.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_free_pages.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_kprobes.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_ref_tracker.o WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_bits.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240619-md-lib-test-v2-1-301e30eeba1e@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Reviewed-by: Kees Cook <kees@kernel.org> Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Masami Hiramatsu (Google) <mhiramat@kernel.org> Cc: "Naveen N. Rao" <naveen.n.rao@linux.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
d2917ff199
commit
3034749132
@ -83,4 +83,5 @@ static int __init dhry_init(void)
|
||||
module_init(dhry_init);
|
||||
|
||||
MODULE_AUTHOR("Geert Uytterhoeven <geert+renesas@glider.be>");
|
||||
MODULE_DESCRIPTION("Dhrystone benchmark test module");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -732,4 +732,5 @@ static int __init test_kstrtox_init(void)
|
||||
return -EINVAL;
|
||||
}
|
||||
module_init(test_kstrtox_init);
|
||||
MODULE_DESCRIPTION("Module test for kstrto*() APIs");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
|
@ -72,4 +72,5 @@ static struct kunit_suite bits_test_suite = {
|
||||
};
|
||||
kunit_test_suite(bits_test_suite);
|
||||
|
||||
MODULE_DESCRIPTION("Test cases for functions and macros in bits.h");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -96,4 +96,5 @@ module_init(test_blackholedev_init);
|
||||
module_exit(test_blackholedev_exit);
|
||||
|
||||
MODULE_AUTHOR("Mahesh Bandewar <maheshb@google.com>");
|
||||
MODULE_DESCRIPTION("module test of the blackhole_dev");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -1567,4 +1567,5 @@ static void __exit test_firmware_exit(void)
|
||||
module_exit(test_firmware_exit);
|
||||
|
||||
MODULE_AUTHOR("Kees Cook <keescook@chromium.org>");
|
||||
MODULE_DESCRIPTION("interface to trigger and test firmware loading");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -44,4 +44,5 @@ static void m_ex(void)
|
||||
module_init(m_in);
|
||||
module_exit(m_ex);
|
||||
MODULE_AUTHOR("Matthew Wilcox <willy@infradead.org>");
|
||||
MODULE_DESCRIPTION("Check that free_pages() doesn't leak memory");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -235,4 +235,5 @@ static struct kunit_suite hash_test_suite = {
|
||||
|
||||
kunit_test_suite(hash_test_suite);
|
||||
|
||||
MODULE_DESCRIPTION("Test cases for <linux/hash.h> and <linux/stringhash.h>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -253,4 +253,5 @@ static void __exit test_hexdump_exit(void)
|
||||
module_exit(test_hexdump_exit);
|
||||
|
||||
MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
|
||||
MODULE_DESCRIPTION("Test cases for lib/hexdump.c module");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
|
@ -214,4 +214,5 @@ static void ida_exit(void)
|
||||
module_init(ida_checks);
|
||||
module_exit(ida_exit);
|
||||
MODULE_AUTHOR("Matthew Wilcox <willy@infradead.org>");
|
||||
MODULE_DESCRIPTION("Test the IDA API");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* test_kprobes.c - simple sanity test for *probes
|
||||
* test_kprobes.c - simple sanity test for k*probes
|
||||
*
|
||||
* Copyright IBM Corp. 2008
|
||||
*/
|
||||
@ -400,4 +400,5 @@ static struct kunit_suite kprobes_test_suite = {
|
||||
|
||||
kunit_test_suites(&kprobes_test_suite);
|
||||
|
||||
MODULE_DESCRIPTION("simple sanity test for k*probes");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -119,4 +119,5 @@ static struct kunit_suite list_sort_suite = {
|
||||
|
||||
kunit_test_suites(&list_sort_suite);
|
||||
|
||||
MODULE_DESCRIPTION("list_sort() KUnit test suite");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -112,4 +112,5 @@ static void __exit test_memcat_p_exit(void)
|
||||
module_init(test_memcat_p_init);
|
||||
module_exit(test_memcat_p_exit);
|
||||
|
||||
MODULE_DESCRIPTION("Test cases for memcat_p() in lib/memcat_p.c");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -436,4 +436,5 @@ static int __init test_meminit_init(void)
|
||||
}
|
||||
module_init(test_meminit_init);
|
||||
|
||||
MODULE_DESCRIPTION("Test cases for SL[AOU]B/page initialization at alloc/free time");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -226,4 +226,5 @@ static void __exit test_min_heap_exit(void)
|
||||
}
|
||||
module_exit(test_min_heap_exit);
|
||||
|
||||
MODULE_DESCRIPTION("Test cases for the min max heap");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -31,4 +31,5 @@ static void __exit test_module_exit(void)
|
||||
module_exit(test_module_exit);
|
||||
|
||||
MODULE_AUTHOR("Kees Cook <keescook@chromium.org>");
|
||||
MODULE_DESCRIPTION("module loading subsystem test module");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Referrence tracker self test.
|
||||
* Reference tracker self test.
|
||||
*
|
||||
* Copyright (c) 2021 Eric Dumazet <edumazet@google.com>
|
||||
*/
|
||||
@ -112,4 +112,5 @@ static void __exit test_ref_tracker_exit(void)
|
||||
module_init(test_ref_tracker_init);
|
||||
module_exit(test_ref_tracker_exit);
|
||||
|
||||
MODULE_DESCRIPTION("Reference tracker self test");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -57,4 +57,5 @@ static struct kunit_suite sort_test_suite = {
|
||||
|
||||
kunit_test_suites(&sort_test_suite);
|
||||
|
||||
MODULE_DESCRIPTION("sort() KUnit test suite");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -57,4 +57,5 @@ module_init(test_static_key_base_init);
|
||||
module_exit(test_static_key_base_exit);
|
||||
|
||||
MODULE_AUTHOR("Jason Baron <jbaron@akamai.com>");
|
||||
MODULE_DESCRIPTION("Kernel module to support testing static keys");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -236,4 +236,5 @@ module_init(test_static_key_init);
|
||||
module_exit(test_static_key_exit);
|
||||
|
||||
MODULE_AUTHOR("Jason Baron <jbaron@akamai.com>");
|
||||
MODULE_DESCRIPTION("Kernel module for testing static keys");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -280,4 +280,5 @@ static void __exit test_sysctl_exit(void)
|
||||
module_exit(test_sysctl_exit);
|
||||
|
||||
MODULE_AUTHOR("Luis R. Rodriguez <mcgrof@kernel.org>");
|
||||
MODULE_DESCRIPTION("proc sysctl test driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
Loading…
Reference in New Issue
Block a user