The patch titled Subject: configfs: init configfs module earlier at boot time has been added to the -mm tree. Its filename is configfs-init-configfs-module-earlier-at-boot-time.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/configfs-init-configfs-module-earlier-at-boot-time.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/configfs-init-configfs-module-earlier-at-boot-time.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Daniel Baluta <daniel.baluta@xxxxxxxxx> Subject: 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@xxxxxxxxx> Suggested-by: Lars-Peter Clausen <lars@xxxxxxxxxx> Reviewed-by: Christoph Hellwig <hch@xxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Joel Becker <jlbec@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/configfs/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/configfs/mount.c~configfs-init-configfs-module-earlier-at-boot-time fs/configfs/mount.c --- a/fs/configfs/mount.c~configfs-init-configfs-module-earlier-at-boot-time +++ a/fs/configfs/mount.c @@ -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); _ Patches currently in -mm which might be from daniel.baluta@xxxxxxxxx are origin.patch configfs-init-configfs-module-earlier-at-boot-time.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html