]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
exportfs: add module description
authorArnd Bergmann <arnd@arndb.de>
Mon, 24 Mar 2025 17:32:26 +0000 (18:32 +0100)
committerChristian Brauner <brauner@kernel.org>
Tue, 25 Mar 2025 14:57:58 +0000 (15:57 +0100)
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 <arnd@arndb.de>
Link: https://lore.kernel.org/r/20250324173242.1501003-1-arnd@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/exportfs/expfs.c

index b5845c4846b85350c7de9ccdec48b8842a61716e..128dd092916bf74f7849456777a8a80dfa006468 100644 (file)
@@ -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");