[NTOSKRNL]

- Fix a typo that results in ISRs being called at an unsafe IRQL (Interrupt->Irql instead of Interrupt->SynchronizeIrql) in certain situations (when Interrupt->Irql < Interrupt->SynchronizeIrql) that can result in ISR synchronization issues

svn path=/trunk/; revision=47098
This commit is contained in:
Cameron Gutman
2010-05-03 22:03:15 +00:00
parent 4b714650f4
commit c751f4300a
+1 -1
View File
@@ -251,7 +251,7 @@ KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
if (Interrupt->SynchronizeIrql > Interrupt->Irql)
{
/* Raise to higher IRQL */
OldIrql = KfRaiseIrql(Interrupt->Irql);
OldIrql = KfRaiseIrql(Interrupt->SynchronizeIrql);
}
/* Acquire interrupt lock */