diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2010-07-30 17:57:37 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2010-08-01 07:05:29 -0400 |
commit | 6ee0578b4daaea01c96b172c6aacca43fd9807a6 (patch) | |
tree | bb82bb4e2a95704477da6c527b23af59c8c2a041 /init | |
parent | 098849516dd522a343e659740c8f1394a5b7fa69 (diff) |
workqueue: mark init_workqueues() as early_initcall()
Mark init_workqueues() as early_initcall() and thus it will be initialized
before smp bringup. init_workqueues() registers for the hotcpu notifier
and thus it should cope with the processors that are brought online after
the workqueues are initialized.
x86 smp bringup code uses workqueues and uses a workaround for the
cold boot process (as the workqueues are initialized post smp_init()).
Marking init_workqueues() as early_initcall() will pave the way for
cleaning up this code.
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/init/main.c b/init/main.c index 3bdb152f412f..5f2ec2cdd900 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -32,7 +32,6 @@ | |||
32 | #include <linux/start_kernel.h> | 32 | #include <linux/start_kernel.h> |
33 | #include <linux/security.h> | 33 | #include <linux/security.h> |
34 | #include <linux/smp.h> | 34 | #include <linux/smp.h> |
35 | #include <linux/workqueue.h> | ||
36 | #include <linux/profile.h> | 35 | #include <linux/profile.h> |
37 | #include <linux/rcupdate.h> | 36 | #include <linux/rcupdate.h> |
38 | #include <linux/moduleparam.h> | 37 | #include <linux/moduleparam.h> |
@@ -786,7 +785,6 @@ static void __init do_initcalls(void) | |||
786 | */ | 785 | */ |
787 | static void __init do_basic_setup(void) | 786 | static void __init do_basic_setup(void) |
788 | { | 787 | { |
789 | init_workqueues(); | ||
790 | cpuset_init_smp(); | 788 | cpuset_init_smp(); |
791 | usermodehelper_init(); | 789 | usermodehelper_init(); |
792 | init_tmpfs(); | 790 | init_tmpfs(); |