From: Arnd Bergmann Date: Mon, 24 Mar 2025 17:32:26 +0000 (+0100) Subject: exportfs: add module description X-Git-Tag: v6.15-rc1~53^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3206c4aa06fb7c7165b5a4f49cb3d5f35ccc0e9;p=thirdparty%2Fkernel%2Flinux.git exportfs: add module description Every loadable module should have a description, to avoid a warning such as: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/exportfs/exportfs.o Signed-off-by: Arnd Bergmann Link: https://lore.kernel.org/r/20250324173242.1501003-1-arnd@kernel.org Signed-off-by: Christian Brauner --- diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c index b5845c4846b85..128dd092916bf 100644 --- a/fs/exportfs/expfs.c +++ b/fs/exportfs/expfs.c @@ -608,4 +608,5 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, } EXPORT_SYMBOL_GPL(exportfs_decode_fh); +MODULE_DESCRIPTION("Code mapping from inodes to file handles"); MODULE_LICENSE("GPL");