diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86_64/kernel/genapic_flat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/genapic_flat.c b/arch/x86_64/kernel/genapic_flat.c index adc96282a9e2..6d57da96bf8c 100644 --- a/arch/x86_64/kernel/genapic_flat.c +++ b/arch/x86_64/kernel/genapic_flat.c | |||
@@ -78,8 +78,18 @@ static void flat_send_IPI_mask(cpumask_t cpumask, int vector) | |||
78 | 78 | ||
79 | static void flat_send_IPI_allbutself(int vector) | 79 | static void flat_send_IPI_allbutself(int vector) |
80 | { | 80 | { |
81 | #ifndef CONFIG_HOTPLUG_CPU | ||
81 | if (((num_online_cpus()) - 1) >= 1) | 82 | if (((num_online_cpus()) - 1) >= 1) |
82 | __send_IPI_shortcut(APIC_DEST_ALLBUT, vector,APIC_DEST_LOGICAL); | 83 | __send_IPI_shortcut(APIC_DEST_ALLBUT, vector,APIC_DEST_LOGICAL); |
84 | #else | ||
85 | cpumask_t allbutme = cpu_online_map; | ||
86 | int me = get_cpu(); /* Ensure we are not preempted when we clear */ | ||
87 | cpu_clear(me, allbutme); | ||
88 | |||
89 | if (!cpus_empty(allbutme)) | ||
90 | flat_send_IPI_mask(allbutme, vector); | ||
91 | put_cpu(); | ||
92 | #endif | ||
83 | } | 93 | } |
84 | 94 | ||
85 | static void flat_send_IPI_all(int vector) | 95 | static void flat_send_IPI_all(int vector) |