aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenno Rice <benno@FreeBSD.org>2002-06-29 09:55:57 +0000
committerBenno Rice <benno@FreeBSD.org>2002-06-29 09:55:57 +0000
commitbfcf2ca28754163e1c8791d53041c819206e944d (patch)
tree0bad1b9388bb3e860cdff7e07d4bc3acc5e17739
parent825467cae17d8d4b3e1c02ace2fe0ee4f6343a48 (diff)
downloadsrc-bfcf2ca28754163e1c8791d53041c819206e944d.tar.gz
src-bfcf2ca28754163e1c8791d53041c819206e944d.zip
We don't need to clear RI in the MSR when entering a critical section.
Notes
Notes: svn path=/head/; revision=99042
-rw-r--r--sys/powerpc/include/critical.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/include/critical.h b/sys/powerpc/include/critical.h
index 08184bd58208..ce85c67a6d1b 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);
}