UefiCpuPkg: Ignore DEBUG interrupt (happens on gaze14)

This commit is contained in:
Jeremy Soller
2019-06-26 14:20:11 -06:00
committed by Tim Crawford
parent 1bd847bd22
commit df3e6a4032

View File

@@ -111,7 +111,7 @@ CommonExceptionHandlerWorker (
// //
// Enter a dead loop if needn't to execute old IDT handler further // Enter a dead loop if needn't to execute old IDT handler further
// //
if (ReservedVectors[ExceptionType].Attribute != EFI_VECTOR_HANDOFF_HOOK_BEFORE) { if (ReservedVectors[ExceptionType].Attribute != EFI_VECTOR_HANDOFF_HOOK_BEFORE && ExceptionType != EXCEPT_IA32_DEBUG) {
CpuDeadLoop (); CpuDeadLoop ();
} }
} }
@@ -293,4 +293,3 @@ RegisterCpuInterruptHandlerWorker (
ExternalInterruptHandler[InterruptType] = InterruptHandler; ExternalInterruptHandler[InterruptType] = InterruptHandler;
return EFI_SUCCESS; return EFI_SUCCESS;
} }