diff options
author | 2025-03-24 18:32:26 +0100 | |
---|---|---|
committer | 2025-03-25 15:57:58 +0100 | |
commit | e3206c4aa06fb7c7165b5a4f49cb3d5f35ccc0e9 (patch) | |
tree | 57956f4b4aa0fe9dbe64a2f54e115626394e00aa | |
parent | exit: fix the usage of delay_group_leader->exit_code in do_notify_parent() and pidfs_exit() (diff) | |
download | wireguard-linux-e3206c4aa06fb7c7165b5a4f49cb3d5f35ccc0e9.tar.xz wireguard-linux-e3206c4aa06fb7c7165b5a4f49cb3d5f35ccc0e9.zip |
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 <arnd@arndb.de>
Link: https://lore.kernel.org/r/20250324173242.1501003-1-arnd@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
-rw-r--r-- | fs/exportfs/expfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c index b5845c4846b8..128dd092916b 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"); |