mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
Be more conservative about re-enabling interrupts during trap processing
until atomic issues are fully sorted. Approved by: benno
This commit is contained in:
parent
b744fccd8a
commit
9e283cf9a2
2 changed files with 2 additions and 2 deletions
|
|
@ -109,9 +109,9 @@ powerpc_interrupt(struct trapframe *framep)
|
|||
*/
|
||||
#if 0
|
||||
printf("powerpc_interrupt: got trap\n");
|
||||
#endif
|
||||
mtmsr(mfmsr() | PSL_EE);
|
||||
isync();
|
||||
#endif
|
||||
trap(framep);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,9 +109,9 @@ powerpc_interrupt(struct trapframe *framep)
|
|||
*/
|
||||
#if 0
|
||||
printf("powerpc_interrupt: got trap\n");
|
||||
#endif
|
||||
mtmsr(mfmsr() | PSL_EE);
|
||||
isync();
|
||||
#endif
|
||||
trap(framep);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue