aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_xarray.c
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-06-01 03:08:37 +0000
committerAndrew Morton <[email protected]>2024-07-04 02:30:05 +0000
commit757234f1ad673e0f86698d75f7fc3bff930b5636 (patch)
treec9bc91e5b5f8dc4639f9d9f6172013f82a08a4aa /lib/test_xarray.c
parentmm: swap: reuse exclusive folio directly instead of wp page faults (diff)
downloadkernel-757234f1ad673e0f86698d75f7fc3bff930b5636.tar.gz
kernel-757234f1ad673e0f86698d75f7fc3bff930b5636.zip
test_xarray: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_xarray.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Jeff Johnson <[email protected]> Cc: Matthew Wilcox (Oracle) <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'lib/test_xarray.c')
-rw-r--r--lib/test_xarray.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_xarray.c b/lib/test_xarray.c
index ab9cc42a0d74..d5c5cbba33ed 100644
--- a/lib/test_xarray.c
+++ b/lib/test_xarray.c
@@ -2173,4 +2173,5 @@ static void xarray_exit(void)
module_init(xarray_checks);
module_exit(xarray_exit);
MODULE_AUTHOR("Matthew Wilcox <[email protected]>");
+MODULE_DESCRIPTION("XArray API test module");
MODULE_LICENSE("GPL");