svn commit: r205735 - projects/ppc64/sys/powerpc/include

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Mar 27 15:41:24 UTC 2010


Author: nwhitehorn
Date: Sat Mar 27 15:41:23 2010
New Revision: 205735
URL: http://svn.freebsd.org/changeset/base/205735

Log:
  Somehow I put the wrong values in for PSL_SF and PSL_HV. Obviously I need
  to test things more...

Modified:
  projects/ppc64/sys/powerpc/include/psl.h

Modified: projects/ppc64/sys/powerpc/include/psl.h
==============================================================================
--- projects/ppc64/sys/powerpc/include/psl.h	Sat Mar 27 15:39:19 2010	(r205734)
+++ projects/ppc64/sys/powerpc/include/psl.h	Sat Mar 27 15:41:23 2010	(r205735)
@@ -79,8 +79,8 @@
  */
 
 #ifdef __powerpc64__
-#define PSL_SF		0x1000000000000000UL	/* 64-bit addressing */
-#define PSL_HV		0x3000000000000000UL	/* hyper-privileged mode */
+#define PSL_SF		0x8000000000000000UL	/* 64-bit addressing */
+#define PSL_HV		0x1000000000000000UL	/* hyper-privileged mode */
 #endif
 
 #define	PSL_VEC		0x02000000UL	/* AltiVec vector unit available */


More information about the svn-src-projects mailing list