projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7421ce
)
nfsd: add a MODULE_DESCRIPTION
author
Jeff Layton
<jlayton@kernel.org>
Thu, 20 Jul 2023 13:34:53 +0000
(09:34 -0400)
committer
Chuck Lever
<chuck.lever@oracle.com>
Tue, 29 Aug 2023 21:45:22 +0000
(17:45 -0400)
I got this today from modpost:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/nfsd/nfsd.o
Add a module description.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfsctl.c
patch
|
blob
|
history
diff --git
a/fs/nfsd/nfsctl.c
b/fs/nfsd/nfsctl.c
index 4302ca0ff6ed59e81f48e9464347d21e1a9b7f39..33f80d289d6389cf703aa5077a2d1a2ab0f57b1c 100644
(file)
--- a/
fs/nfsd/nfsctl.c
+++ b/
fs/nfsd/nfsctl.c
@@
-1627,6
+1627,7
@@
static void __exit exit_nfsd(void)
}
MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
+MODULE_DESCRIPTION("In-kernel NFS server");
MODULE_LICENSE("GPL");
module_init(init_nfsd)
module_exit(exit_nfsd)