mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Ignore exception 15 in KiTrapHandler.
svn path=/trunk/; revision=13999
This commit is contained in:
parent
0618186aa6
commit
0d216dc91a
1 changed files with 15 additions and 0 deletions
|
@ -509,6 +509,21 @@ KiTrapHandler(PKTRAP_FRAME Tf, ULONG ExceptionNr)
|
|||
ExceptionNr = 12;
|
||||
}
|
||||
|
||||
if (ExceptionNr == 15)
|
||||
{
|
||||
/*
|
||||
* FIXME:
|
||||
* This exception should never occur. The P6 has a bug, which does sometimes deliver
|
||||
* the apic spurious interrupt as exception 15. On an athlon64, I get one exception
|
||||
* in the early boot phase in apic mode (using the smp build). I've looked to the linux
|
||||
* sources. Linux does ignore this exception.
|
||||
*
|
||||
* Hartmut Birr
|
||||
*/
|
||||
DPRINT1("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
|
||||
return(0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Maybe handle the page fault and return
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue