Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228938
b: refs/heads/master
c: ab846f1
h: refs/heads/master
v: v3
  • Loading branch information
Don Zickus authored and Ingo Molnar committed Jan 7, 2011
1 parent b235476 commit 0551130
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c410b8307702c1e1f35be3fd868ad18e4ba0410f
refs/heads/master: ab846f13f69fa64f8ed69ce0c3e239e075910d23
16 changes: 10 additions & 6 deletions trunk/arch/x86/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ EXPORT_SYMBOL_GPL(used_vectors);
static int ignore_nmis;

int unknown_nmi_panic;
/*
* Prevent NMI reason port (0x61) being accessed simultaneously, can
* only be used in NMI handler.
*/
static DEFINE_RAW_SPINLOCK(nmi_reason_lock);

static inline void conditional_sti(struct pt_regs *regs)
{
Expand Down Expand Up @@ -392,7 +397,6 @@ unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
{
unsigned char reason = 0;
int cpu;

/*
* CPU-specific NMI must be processed before non-CPU-specific
Expand All @@ -402,13 +406,12 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
if (notify_die(DIE_NMI, "nmi", regs, 0, 2, SIGINT) == NOTIFY_STOP)
return;

cpu = smp_processor_id();

/* Only the BSP gets external NMIs from the system. */
if (!cpu)
reason = get_nmi_reason();
/* Non-CPU-specific NMI: NMI sources can be processed on any CPU */
raw_spin_lock(&nmi_reason_lock);
reason = get_nmi_reason();

if (!(reason & NMI_REASON_MASK)) {
raw_spin_unlock(&nmi_reason_lock);
unknown_nmi_error(reason, regs);

return;
Expand All @@ -426,6 +429,7 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
*/
reassert_nmi();
#endif
raw_spin_unlock(&nmi_reason_lock);
}

dotraplinkage notrace __kprobes void
Expand Down

0 comments on commit 0551130

Please sign in to comment.