diff options
| author | Chandra Seetharaman <sekharan@us.ibm.com> | 2006-06-27 05:54:08 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 20:32:41 -0400 |
| commit | 65edc68c345cbe21d0b0375c3452a3ed5e322868 (patch) | |
| tree | 07961d63cdacf95355a8db471c6ff4e321ca94fd /include | |
| parent | 054cc8a2d808822dadf488a61729e3e550f114c4 (diff) | |
[PATCH] cpu hotplug: make [un]register_cpu_notifier init time only
CPUs come online only at init time (unless CONFIG_HOTPLUG_CPU is defined).
So, cpu_notifier functionality need to be available only at init time.
This patch makes register_cpu_notifier() available only at init time, unless
CONFIG_HOTPLUG_CPU is defined.
This patch exports register_cpu_notifier() and unregister_cpu_notifier() only
if CONFIG_HOTPLUG_CPU is defined.
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/cpu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/cpu.h b/include/linux/cpu.h index b23bf1c8ad..cdfe471a70 100644 --- a/include/linux/cpu.h +++ b/include/linux/cpu.h | |||
| @@ -41,7 +41,13 @@ struct notifier_block; | |||
| 41 | #ifdef CONFIG_SMP | 41 | #ifdef CONFIG_SMP |
| 42 | /* Need to know about CPUs going up/down? */ | 42 | /* Need to know about CPUs going up/down? */ |
| 43 | extern int register_cpu_notifier(struct notifier_block *nb); | 43 | extern int register_cpu_notifier(struct notifier_block *nb); |
| 44 | #ifdef CONFIG_HOTPLUG_CPU | ||
| 44 | extern void unregister_cpu_notifier(struct notifier_block *nb); | 45 | extern void unregister_cpu_notifier(struct notifier_block *nb); |
| 46 | #else | ||
| 47 | static inline void unregister_cpu_notifier(struct notifier_block *nb) | ||
| 48 | { | ||
| 49 | } | ||
| 50 | #endif | ||
| 45 | extern int current_in_cpu_hotplug(void); | 51 | extern int current_in_cpu_hotplug(void); |
| 46 | 52 | ||
| 47 | int cpu_up(unsigned int cpu); | 53 | int cpu_up(unsigned int cpu); |
