diff options
-rw-r--r-- | kernel/padata.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/padata.c b/kernel/padata.c index 2f0037a86289..07af2c95dcfe 100644 --- a/kernel/padata.c +++ b/kernel/padata.c | |||
@@ -1074,18 +1074,18 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq, | |||
1074 | 1074 | ||
1075 | pinst->flags = 0; | 1075 | pinst->flags = 0; |
1076 | 1076 | ||
1077 | #ifdef CONFIG_HOTPLUG_CPU | ||
1078 | pinst->cpu_notifier.notifier_call = padata_cpu_callback; | ||
1079 | pinst->cpu_notifier.priority = 0; | ||
1080 | register_hotcpu_notifier(&pinst->cpu_notifier); | ||
1081 | #endif | ||
1082 | |||
1083 | put_online_cpus(); | 1077 | put_online_cpus(); |
1084 | 1078 | ||
1085 | BLOCKING_INIT_NOTIFIER_HEAD(&pinst->cpumask_change_notifier); | 1079 | BLOCKING_INIT_NOTIFIER_HEAD(&pinst->cpumask_change_notifier); |
1086 | kobject_init(&pinst->kobj, &padata_attr_type); | 1080 | kobject_init(&pinst->kobj, &padata_attr_type); |
1087 | mutex_init(&pinst->lock); | 1081 | mutex_init(&pinst->lock); |
1088 | 1082 | ||
1083 | #ifdef CONFIG_HOTPLUG_CPU | ||
1084 | pinst->cpu_notifier.notifier_call = padata_cpu_callback; | ||
1085 | pinst->cpu_notifier.priority = 0; | ||
1086 | register_hotcpu_notifier(&pinst->cpu_notifier); | ||
1087 | #endif | ||
1088 | |||
1089 | return pinst; | 1089 | return pinst; |
1090 | 1090 | ||
1091 | err_free_masks: | 1091 | err_free_masks: |