diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2010-07-30 14:57:37 -0700 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2010-08-01 13:05:29 +0200 |
commit | 6ee0578b4daaea01c96b172c6aacca43fd9807a6 (patch) | |
tree | bb82bb4e2a95704477da6c527b23af59c8c2a041 /include/linux/workqueue.h | |
parent | 098849516dd522a343e659740c8f1394a5b7fa69 (diff) | |
download | linux-3.10-6ee0578b4daaea01c96b172c6aacca43fd9807a6.tar.gz linux-3.10-6ee0578b4daaea01c96b172c6aacca43fd9807a6.tar.bz2 linux-3.10-6ee0578b4daaea01c96b172c6aacca43fd9807a6.zip |
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 'include/linux/workqueue.h')
-rw-r--r-- | include/linux/workqueue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 5f76001c4e6..51dc9a727e5 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -327,7 +327,6 @@ extern int schedule_delayed_work_on(int cpu, struct delayed_work *work, extern int schedule_on_each_cpu(work_func_t func); extern int keventd_up(void); -extern void init_workqueues(void); int execute_in_process_context(work_func_t fn, struct execute_work *); extern int flush_work(struct work_struct *work); |