General protection faults are only disabled if error is 0x82.
This commit is contained in:
@@ -145,7 +145,7 @@ void x86_doabrt(int x86_abrt)
|
|||||||
}
|
}
|
||||||
void x86gpf(char *s, uint16_t error)
|
void x86gpf(char *s, uint16_t error)
|
||||||
{
|
{
|
||||||
return;
|
if (error == 0x82) return;
|
||||||
pclog("GPF %04X : %s\n", error, s);
|
pclog("GPF %04X : %s\n", error, s);
|
||||||
abrt = ABRT_GPF;
|
abrt = ABRT_GPF;
|
||||||
abrt_error = error;
|
abrt_error = error;
|
||||||
|
Reference in New Issue
Block a user