From: Arnd Bergmann Date: Mon, 24 Mar 2025 17:32:35 +0000 (+0100) Subject: kunit: slub: add module description X-Git-Tag: v6.15-rc3~43^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61c4e6ca8c9364e08c2c132d1bfae2f85af42c7a;p=thirdparty%2Flinux.git kunit: slub: add module description Modules without a description now cause a warning: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/tests/slub_kunit.o Link: https://lkml.kernel.org/r/20250324173242.1501003-10-arnd@kernel.org Fixes: 6c6c1fc09de3 ("modpost: require a MODULE_DESCRIPTION()") Signed-off-by: Arnd Bergmann Cc: Guenetr Roeck Cc: Jeff Johnson Cc: Masahiro Yamada Cc: Pei Xiao Cc: Rae Moar Cc: Stehen Rothwell Cc: Vlastimil Babka Signed-off-by: Andrew Morton --- diff --git a/lib/tests/slub_kunit.c b/lib/tests/slub_kunit.c index d47c472b05201..848b682a2d70e 100644 --- a/lib/tests/slub_kunit.c +++ b/lib/tests/slub_kunit.c @@ -325,4 +325,5 @@ static struct kunit_suite test_suite = { }; kunit_test_suite(test_suite); +MODULE_DESCRIPTION("Kunit tests for slub allocator"); MODULE_LICENSE("GPL");