From: Oleg Nesterov Date: Wed, 9 May 2007 09:34:14 +0000 (-0700) Subject: workqueue: make init_workqueues() __init X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c12920d19078eb8fd99560ec232a6e05c6ff1aa8;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git workqueue: make init_workqueues() __init The only caller of init_workqueues() is do_basic_setup(). Signed-off-by: Oleg Nesterov Cc: Ingo Molnar Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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);