summaryrefslogtreecommitdiffstats
path: root/kernel/params.c
diff options
context:
space:
mode:
authorMark Huang2006-09-29 10:59:34 +0200
committerLinus Torvalds2006-09-29 18:18:08 +0200
commitd10be6d1bdb0c901b78244872de3cc1c1b6c3fb2 (patch)
tree560171a8091e7f18763ff40099ccbcf9567b7842 /kernel/params.c
parent[PATCH] Require mmap handler for a.out executables (diff)
downloadkernel-qcow2-linux-d10be6d1bdb0c901b78244872de3cc1c1b6c3fb2.tar.gz
kernel-qcow2-linux-d10be6d1bdb0c901b78244872de3cc1c1b6c3fb2.tar.xz
kernel-qcow2-linux-d10be6d1bdb0c901b78244872de3cc1c1b6c3fb2.zip
[PATCH] module_subsys: initialize earlier
Initialize module_subsys earlier (or at least earlier than devices) since it could be used very early in the boot process if kmod loads a module before the device initcalls. Otherwise, kmod will crash in kernel/module.c:mod_sysfs_setup() since the kset in module_subsys is not initialized yet. I only noticed this problem because occasionally, kmod loads the modules for my SCSI and Ethernet adapters very early, during the boot process itself. I don't quite understand why it loads them sometimes and doesn't load them other times. Or who is telling kmod to do so. Can someone explain? Signed-off-by: Mark Huang <mlhuang@cs.princeton.edu> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/params.c')
-rw-r--r--kernel/params.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/params.c b/kernel/params.c
index 63d432d0ebc0..f406655d6653 100644
--- a/kernel/params.c
+++ b/kernel/params.c
@@ -699,7 +699,7 @@ static int __init param_sysfs_init(void)
return 0;
}
-__initcall(param_sysfs_init);
+subsys_initcall(param_sysfs_init);
EXPORT_SYMBOL(param_set_byte);
EXPORT_SYMBOL(param_get_byte);