Skip to content

Commit 7d15687

Browse files
committed
Merge tag 'vfs-6.11.module.description' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
Pull vfs module description updates from Christian Brauner: "This contains patches to add module descriptions to all modules under fs/ currently lacking them" * tag 'vfs-6.11.module.description' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: openpromfs: add missing MODULE_DESCRIPTION() macro fs: nls: add missing MODULE_DESCRIPTION() macros fs: autofs: add MODULE_DESCRIPTION() fs: fat: add missing MODULE_DESCRIPTION() macros fs: binfmt: add missing MODULE_DESCRIPTION() macros fs: cramfs: add MODULE_DESCRIPTION() fs: hfs: add MODULE_DESCRIPTION() fs: hpfs: add MODULE_DESCRIPTION() qnx4: add MODULE_DESCRIPTION() qnx6: add MODULE_DESCRIPTION() fs: sysv: add MODULE_DESCRIPTION() fs: efs: add MODULE_DESCRIPTION() fs: minix: add MODULE_DESCRIPTION()
2 parents aff3133 + 807221c commit 7d15687

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+67
-0
lines changed

fs/autofs/init.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ static void __exit exit_autofs_fs(void)
3838

3939
module_init(init_autofs_fs)
4040
module_exit(exit_autofs_fs)
41+
MODULE_DESCRIPTION("Kernel automounter support");
4142
MODULE_LICENSE("GPL");

fs/binfmt_misc.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,4 +1083,5 @@ static void __exit exit_misc_binfmt(void)
10831083

10841084
core_initcall(init_misc_binfmt);
10851085
module_exit(exit_misc_binfmt);
1086+
MODULE_DESCRIPTION("Kernel support for miscellaneous binaries");
10861087
MODULE_LICENSE("GPL");

fs/binfmt_script.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,5 @@ static void __exit exit_script_binfmt(void)
155155

156156
core_initcall(init_script_binfmt);
157157
module_exit(exit_script_binfmt);
158+
MODULE_DESCRIPTION("Kernel support for scripts starting with #!");
158159
MODULE_LICENSE("GPL");

fs/cramfs/inode.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -998,4 +998,5 @@ static void __exit exit_cramfs_fs(void)
998998

999999
module_init(init_cramfs_fs)
10001000
module_exit(exit_cramfs_fs)
1001+
MODULE_DESCRIPTION("Compressed ROM file system support");
10011002
MODULE_LICENSE("GPL");

fs/efs/inode.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,4 +311,5 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
311311
return 0;
312312
}
313313

314+
MODULE_DESCRIPTION("Extent File System (efs)");
314315
MODULE_LICENSE("GPL");

fs/fat/fat_test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,5 @@ static struct kunit_suite fat_test_suite = {
193193

194194
kunit_test_suites(&fat_test_suite);
195195

196+
MODULE_DESCRIPTION("KUnit tests for FAT filesystems");
196197
MODULE_LICENSE("GPL v2");

fs/fat/inode.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1978,4 +1978,5 @@ static void __exit exit_fat_fs(void)
19781978
module_init(init_fat_fs)
19791979
module_exit(exit_fat_fs)
19801980

1981+
MODULE_DESCRIPTION("Core FAT filesystem support");
19811982
MODULE_LICENSE("GPL");

fs/hfs/super.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
static struct kmem_cache *hfs_inode_cachep;
3030

31+
MODULE_DESCRIPTION("Apple Macintosh file system support");
3132
MODULE_LICENSE("GPL");
3233

3334
static int hfs_sync_fs(struct super_block *sb, int wait)

fs/hpfs/super.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,4 +793,5 @@ static void __exit exit_hpfs_fs(void)
793793

794794
module_init(init_hpfs_fs)
795795
module_exit(exit_hpfs_fs)
796+
MODULE_DESCRIPTION("OS/2 HPFS file system support");
796797
MODULE_LICENSE("GPL");

fs/minix/inode.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,5 +730,6 @@ static void __exit exit_minix_fs(void)
730730

731731
module_init(init_minix_fs)
732732
module_exit(exit_minix_fs)
733+
MODULE_DESCRIPTION("Minix file system");
733734
MODULE_LICENSE("GPL");
734735

0 commit comments

Comments
 (0)