Re: NMI handling rework

Zwane Mwaikambo (zwane@holomorphy.com)
Thu, 7 Nov 2002 11:38:14 -0500 (EST)


On Thu, 7 Nov 2002, Corey Minyard wrote:

> NMIs cannot be masked, they are by definition non-maskable :-). You can
> get an NMI while executing an NMI.

"After an NMI interrupt is recognized by the P6 family, Pentium, Intel486,
Intel386, and Intel 286 processors, the NMI interrupt is masked until the
first IRET instruction is executed, unlike the 8086 processor."

- 18.22.2 NMI Interrupts, Intel IA32 System Developer's Manual vol3

> An NMI-based timer? I can see the use if you REALLY need accurate
> intervals, but you can't do much in an NMI, no spinlocks, even.

You don't have to worry about protection in the handler, just make sure
external references (non NMI) mask that handler. Alternatively you can do
a spin_trylock if you really need to and consider it a lost NMI if you
can't acquire.

Zwane

-- 
function.linuxpower.ca

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/