svn commit: r264189 - head/sys/powerpc/include
Justin Hibbits
jhibbits at FreeBSD.org
Sun Apr 6 06:18:44 UTC 2014
Author: jhibbits
Date: Sun Apr 6 06:18:43 2014
New Revision: 264189
URL: http://svnweb.freebsd.org/changeset/base/264189
Log:
Correct the SRR1 mask, it's 10-15 not 10-11.
X-MFC-with: r263464,r263752
Modified:
head/sys/powerpc/include/psl.h
Modified: head/sys/powerpc/include/psl.h
==============================================================================
--- head/sys/powerpc/include/psl.h Sun Apr 6 05:45:43 2014 (r264188)
+++ head/sys/powerpc/include/psl.h Sun Apr 6 06:18:43 2014 (r264189)
@@ -96,7 +96,7 @@
#else
#define PSL_KERNSET (PSL_EE | PSL_ME | PSL_IR | PSL_DR | PSL_RI)
#endif
-#define PSL_SRR1_MASK 0x78300000UL /* Bits 1-4, 10-15 (ppc32), 33-36, 42-47 (ppc64) */
+#define PSL_SRR1_MASK 0x783f0000UL /* Bits 1-4, 10-15 (ppc32), 33-36, 42-47 (ppc64) */
#endif
#define PSL_USERSET (PSL_KERNSET | PSL_PR)
More information about the svn-src-all
mailing list