From a55c84e3694311fd019a267dbfca5b9e164b8d4e Mon Sep 17 00:00:00 2001 From: benno Date: Sat, 29 Jun 2002 09:55:57 +0000 Subject: We don't need to clear RI in the MSR when entering a critical section. --- sys/powerpc/include/critical.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/powerpc/include/critical.h b/sys/powerpc/include/critical.h index 08184bd..ce85c67 100644 --- a/sys/powerpc/include/critical.h +++ b/sys/powerpc/include/critical.h @@ -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); } -- cgit v1.1