Skip to content

Commit f5b6977

Browse files
Daniel Balutatorvalds
authored andcommitted
configfs: init configfs module earlier at boot time
We need this earlier in the boot process to allow various subsystems to use configfs (e.g Industrial IIO). Also, debugfs is at core_initcall level and configfs should be on the same level from infrastructure point of view. Signed-off-by: Daniel Baluta <daniel.baluta@intel.com> Suggested-by: Lars-Peter Clausen <lars@metafoo.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent e386eed commit f5b6977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/configfs/mount.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,5 +173,5 @@ MODULE_LICENSE("GPL");
173173
MODULE_VERSION("0.0.2");
174174
MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
175175

176-
module_init(configfs_init);
176+
core_initcall(configfs_init);
177177
module_exit(configfs_exit);

0 commit comments

Comments
 (0)