diff options
Diffstat (limited to 'arch/powerpc/kernel/smp.c')
| -rw-r--r-- | arch/powerpc/kernel/smp.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index a521fb8a40ee..c2ee14498077 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
| @@ -619,4 +619,16 @@ void __cpu_die(unsigned int cpu) | |||
| 619 | if (smp_ops->cpu_die) | 619 | if (smp_ops->cpu_die) |
| 620 | smp_ops->cpu_die(cpu); | 620 | smp_ops->cpu_die(cpu); |
| 621 | } | 621 | } |
| 622 | |||
| 623 | static DEFINE_MUTEX(powerpc_cpu_hotplug_driver_mutex); | ||
| 624 | |||
| 625 | void cpu_hotplug_driver_lock() | ||
| 626 | { | ||
| 627 | mutex_lock(&powerpc_cpu_hotplug_driver_mutex); | ||
| 628 | } | ||
| 629 | |||
| 630 | void cpu_hotplug_driver_unlock() | ||
| 631 | { | ||
| 632 | mutex_unlock(&powerpc_cpu_hotplug_driver_mutex); | ||
| 633 | } | ||
| 622 | #endif | 634 | #endif |
