We don't need to clear RI in the MSR when entering a critical section.

This commit is contained in:
Benno Rice 2002-06-29 09:55:57 +00:00
parent 825467cae1
commit bfcf2ca287
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99042

View File

@ -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);
}