mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[NTOS:KE] Disable interrupts before lowering IRQL in KiDpcInterruptHandler to avoid stacking up DPC interrupts
This commit is contained in:
@@ -71,9 +71,9 @@ KiDpcInterruptHandler(VOID)
|
||||
KiSwapContext(APC_LEVEL, OldThread);
|
||||
}
|
||||
|
||||
/* Go back to old irql and disable interrupts */
|
||||
KeLowerIrql(OldIrql);
|
||||
/* Disable interrupts and go back to old irql */
|
||||
_disable();
|
||||
KeLowerIrql(OldIrql);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user