We don't need to clear RI in the MSR when entering a critical section.
This commit is contained in:
parent
825467cae1
commit
bfcf2ca287
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99042
@ -43,7 +43,7 @@ cpu_critical_enter(void)
|
||||
|
||||
msr = mfmsr();
|
||||
td->td_md.md_savecrit = msr;
|
||||
msr &= ~(PSL_EE | PSL_RI);
|
||||
msr &= ~PSL_EE;
|
||||
mtmsr(msr);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user