mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user