mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NTOS:KE] Disable interrupts before lowering IRQL in KiDpcInterruptHandler to avoid stacking up DPC interrupts
This commit is contained in:
parent
3aaee35629
commit
366e8a840c
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue