aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/i386/kernel/smp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/kernel/smp.c b/arch/i386/kernel/smp.c
index f8667109db1c..f98c3ffd6fc3 100644
--- a/arch/i386/kernel/smp.c
+++ b/arch/i386/kernel/smp.c
@@ -359,10 +359,12 @@ void native_flush_tlb_others(const cpumask_t *cpumaskp, struct mm_struct *mm,
359 BUG_ON(cpu_isset(smp_processor_id(), cpumask)); 359 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
360 BUG_ON(!mm); 360 BUG_ON(!mm);
361 361
362#ifdef CONFIG_HOTPLUG_CPU
362 /* If a CPU which we ran on has gone down, OK. */ 363 /* If a CPU which we ran on has gone down, OK. */
363 cpus_and(cpumask, cpumask, cpu_online_map); 364 cpus_and(cpumask, cpumask, cpu_online_map);
364 if (cpus_empty(cpumask)) 365 if (unlikely(cpus_empty(cpumask)))
365 return; 366 return;
367#endif
366 368
367 /* 369 /*
368 * i'm not happy about this global shared spinlock in the 370 * i'm not happy about this global shared spinlock in the