Commit c410b830 authored by Don Zickus's avatar Don Zickus Committed by Ingo Molnar

x86, NMI: Remove DIE_NMI_IPI

With priorities in place and no one really understanding the difference between
DIE_NMI and DIE_NMI_IPI, just remove DIE_NMI_IPI and convert everyone to DIE_NMI.

This also simplifies default_do_nmi() a little bit.  Instead of calling the
die_notifier in both the if and else part, just pull it out and call it before
the if-statement.  This has the side benefit of avoiding a call to the ioport
to see if there is an external NMI sitting around until after the (more frequent)
internal NMIs are dealt with.
Patch-Inspired-by: default avatarHuang Ying <ying.huang@intel.com>
Signed-off-by: default avatarDon Zickus <dzickus@redhat.com>
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1294348732-15030-5-git-send-email-dzickus@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 166d7514
...@@ -18,7 +18,6 @@ enum die_val { ...@@ -18,7 +18,6 @@ enum die_val {
DIE_TRAP, DIE_TRAP,
DIE_GPF, DIE_GPF,
DIE_CALL, DIE_CALL,
DIE_NMI_IPI,
DIE_PAGE_FAULT, DIE_PAGE_FAULT,
DIE_NMIUNKNOWN, DIE_NMIUNKNOWN,
}; };
......
...@@ -68,7 +68,6 @@ arch_trigger_all_cpu_backtrace_handler(struct notifier_block *self, ...@@ -68,7 +68,6 @@ arch_trigger_all_cpu_backtrace_handler(struct notifier_block *self,
switch (cmd) { switch (cmd) {
case DIE_NMI: case DIE_NMI:
case DIE_NMI_IPI:
break; break;
default: default:
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <linux/gfp.h> #include <linux/gfp.h>
#include <asm/mce.h> #include <asm/mce.h>
#include <asm/apic.h> #include <asm/apic.h>
#include <asm/nmi.h>
/* Update fake mce registers on current CPU. */ /* Update fake mce registers on current CPU. */
static void inject_mce(struct mce *m) static void inject_mce(struct mce *m)
...@@ -83,7 +84,7 @@ static int mce_raise_notify(struct notifier_block *self, ...@@ -83,7 +84,7 @@ static int mce_raise_notify(struct notifier_block *self,
struct die_args *args = (struct die_args *)data; struct die_args *args = (struct die_args *)data;
int cpu = smp_processor_id(); int cpu = smp_processor_id();
struct mce *m = &__get_cpu_var(injectm); struct mce *m = &__get_cpu_var(injectm);
if (val != DIE_NMI_IPI || !cpumask_test_cpu(cpu, mce_inject_cpumask)) if (val != DIE_NMI || !cpumask_test_cpu(cpu, mce_inject_cpumask))
return NOTIFY_DONE; return NOTIFY_DONE;
cpumask_clear_cpu(cpu, mce_inject_cpumask); cpumask_clear_cpu(cpu, mce_inject_cpumask);
if (m->inject_flags & MCJ_EXCEPTION) if (m->inject_flags & MCJ_EXCEPTION)
......
...@@ -1268,7 +1268,6 @@ perf_event_nmi_handler(struct notifier_block *self, ...@@ -1268,7 +1268,6 @@ perf_event_nmi_handler(struct notifier_block *self,
switch (cmd) { switch (cmd) {
case DIE_NMI: case DIE_NMI:
case DIE_NMI_IPI:
break; break;
case DIE_NMIUNKNOWN: case DIE_NMIUNKNOWN:
this_nmi = percpu_read(irq_stat.__nmi_count); this_nmi = percpu_read(irq_stat.__nmi_count);
......
...@@ -526,10 +526,6 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd) ...@@ -526,10 +526,6 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd)
} }
return NOTIFY_DONE; return NOTIFY_DONE;
case DIE_NMI_IPI:
/* Just ignore, we will handle the roundup on DIE_NMI. */
return NOTIFY_DONE;
case DIE_NMIUNKNOWN: case DIE_NMIUNKNOWN:
if (was_in_debug_nmi[raw_smp_processor_id()]) { if (was_in_debug_nmi[raw_smp_processor_id()]) {
was_in_debug_nmi[raw_smp_processor_id()] = 0; was_in_debug_nmi[raw_smp_processor_id()] = 0;
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <asm/pci_x86.h> #include <asm/pci_x86.h>
#include <asm/virtext.h> #include <asm/virtext.h>
#include <asm/cpu.h> #include <asm/cpu.h>
#include <asm/nmi.h>
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
# include <linux/ctype.h> # include <linux/ctype.h>
...@@ -747,7 +748,7 @@ static int crash_nmi_callback(struct notifier_block *self, ...@@ -747,7 +748,7 @@ static int crash_nmi_callback(struct notifier_block *self,
{ {
int cpu; int cpu;
if (val != DIE_NMI_IPI) if (val != DIE_NMI)
return NOTIFY_OK; return NOTIFY_OK;
cpu = raw_smp_processor_id(); cpu = raw_smp_processor_id();
......
...@@ -394,6 +394,14 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs) ...@@ -394,6 +394,14 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
unsigned char reason = 0; unsigned char reason = 0;
int cpu; int cpu;
/*
* CPU-specific NMI must be processed before non-CPU-specific
* NMI, otherwise we may lose it, because the CPU-specific
* NMI can not be detected/processed on other CPUs.
*/
if (notify_die(DIE_NMI, "nmi", regs, 0, 2, SIGINT) == NOTIFY_STOP)
return;
cpu = smp_processor_id(); cpu = smp_processor_id();
/* Only the BSP gets external NMIs from the system. */ /* Only the BSP gets external NMIs from the system. */
...@@ -401,21 +409,10 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs) ...@@ -401,21 +409,10 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
reason = get_nmi_reason(); reason = get_nmi_reason();
if (!(reason & NMI_REASON_MASK)) { if (!(reason & NMI_REASON_MASK)) {
if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
== NOTIFY_STOP)
return;
#ifdef CONFIG_X86_LOCAL_APIC
if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT)
== NOTIFY_STOP)
return;
#endif
unknown_nmi_error(reason, regs); unknown_nmi_error(reason, regs);
return; return;
} }
if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
return;
/* AK: following checks seem to be broken on modern chipsets. FIXME */ /* AK: following checks seem to be broken on modern chipsets. FIXME */
if (reason & NMI_REASON_SERR) if (reason & NMI_REASON_SERR)
......
...@@ -65,7 +65,6 @@ static int profile_exceptions_notify(struct notifier_block *self, ...@@ -65,7 +65,6 @@ static int profile_exceptions_notify(struct notifier_block *self,
switch (val) { switch (val) {
case DIE_NMI: case DIE_NMI:
case DIE_NMI_IPI:
if (ctr_running) if (ctr_running)
model->check_ctrs(args->regs, &__get_cpu_var(cpu_msrs)); model->check_ctrs(args->regs, &__get_cpu_var(cpu_msrs));
else if (!nmi_enabled) else if (!nmi_enabled)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment