Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5b69770 authored by Daniel Baluta's avatar Daniel Baluta Committed by Linus Torvalds
Browse files

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: default avatarDaniel Baluta <daniel.baluta@intel.com>
Suggested-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e386eed8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -173,5 +173,5 @@ MODULE_LICENSE("GPL");
MODULE_VERSION("0.0.2");
MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");

module_init(configfs_init);
core_initcall(configfs_init);
module_exit(configfs_exit);