diff options
author | Don Zickus <dzickus@redhat.com> | 2011-12-06 13:08:59 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-12-06 15:02:39 -0500 |
commit | 565cbc3e934f221369a656b4469a044aa4c3f2a8 (patch) | |
tree | 2e0972c75772237db50eecfa2634ae69bfcf10b4 /arch | |
parent | 53b5650273fea486ac8ac6c1d1e9a6cd17aa31ca (diff) |
x86, NMI: NMI-selftest should handle the UP case properly
If no remote cpus are online, then just quietly skip the remote
IPI test for now.
Signed-off-by: Don Zickus <dzickus@redhat.com>
Cc: andi@firstfloor.org
Cc: torvalds@linux-foundation.org
Cc: peterz@infradead.org
Cc: robert.richter@amd.com
Link: http://lkml.kernel.org/r/20111206180859.GR1669@redhat.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/nmi_selftest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/nmi_selftest.c b/arch/x86/kernel/nmi_selftest.c index 572adb622251..1e42a23c1f2a 100644 --- a/arch/x86/kernel/nmi_selftest.c +++ b/arch/x86/kernel/nmi_selftest.c | |||
@@ -90,7 +90,8 @@ static void remote_ipi(void) | |||
90 | { | 90 | { |
91 | cpumask_copy(to_cpumask(nmi_ipi_mask), cpu_online_mask); | 91 | cpumask_copy(to_cpumask(nmi_ipi_mask), cpu_online_mask); |
92 | cpumask_clear_cpu(smp_processor_id(), to_cpumask(nmi_ipi_mask)); | 92 | cpumask_clear_cpu(smp_processor_id(), to_cpumask(nmi_ipi_mask)); |
93 | test_nmi_ipi(to_cpumask(nmi_ipi_mask)); | 93 | if (!cpumask_empty(nmi_ipi_mask)) |
94 | test_nmi_ipi(to_cpumask(nmi_ipi_mask)); | ||
94 | } | 95 | } |
95 | 96 | ||
96 | static void local_ipi(void) | 97 | static void local_ipi(void) |