From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Baluta Subject: [RESEND PATCH] configfs: init configfs module earlier at boot time Date: Tue, 7 Apr 2015 18:56:11 +0300 Message-ID: <1428422171-3180-1-git-send-email-daniel.baluta@intel.com> Cc: linux-fsdevel@vger.kernel.org, lars@metafoo.de, daniel.baluta@intel.com, linux-kernel@vger.kernel.org To: viro@zeniv.linux.org.uk, hch@lst.de, jlbec@evilplan.org Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org 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. Suggested-by: Lars-Peter Clausen Signed-off-by: Daniel Baluta --- * Extended CC list with Al, Christoph and fsdevel :) fs/configfs/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c index da94e41..5373567 100644 --- a/fs/configfs/mount.c +++ b/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); -- 1.9.1