diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2007-05-09 11:34:14 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 21:30:52 +0200 |
commit | c12920d19078eb8fd99560ec232a6e05c6ff1aa8 (patch) | |
tree | 614d7acbb8393bc3ae16d41c5a7f69a0abb4c9c1 /kernel/workqueue.c | |
parent | workqueue: introduce workqueue_struct->singlethread (diff) | |
download | linux-c12920d19078eb8fd99560ec232a6e05c6ff1aa8.tar.xz linux-c12920d19078eb8fd99560ec232a6e05c6ff1aa8.zip |
workqueue: make init_workqueues() __init
The only caller of init_workqueues() is do_basic_setup().
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r-- | kernel/workqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 32b1091f21ef..e858e93886e3 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -823,7 +823,7 @@ static int __devinit workqueue_cpu_callback(struct notifier_block *nfb, return NOTIFY_OK; } -void init_workqueues(void) +void __init init_workqueues(void) { cpu_populated_map = cpu_online_map; singlethread_cpu = first_cpu(cpu_possible_map); |