svn commit: r230220 - projects/pseries/powerpc/include

Nathan Whitehorn nwhitehorn at FreeBSD.org
Mon Jan 16 15:38:45 UTC 2012


Author: nwhitehorn
Date: Mon Jan 16 15:38:45 2012
New Revision: 230220
URL: http://svn.freebsd.org/changeset/base/230220

Log:
  Switch which bit we use for LPTE_LOCKED. I misread the spec in r216193.

Modified:
  projects/pseries/powerpc/include/pte.h

Modified: projects/pseries/powerpc/include/pte.h
==============================================================================
--- projects/pseries/powerpc/include/pte.h	Mon Jan 16 14:55:42 2012	(r230219)
+++ projects/pseries/powerpc/include/pte.h	Mon Jan 16 15:38:45 2012	(r230220)
@@ -96,7 +96,7 @@ struct lpteg {
 #define LPTE_VSID_SHIFT		12
 #define LPTE_AVPN_MASK		0xFFFFFFFFFFFFFF80ULL
 #define LPTE_API		0x0000000000000F80ULL
-#define LPTE_LOCKED		0x0000000000000040ULL
+#define LPTE_LOCKED		0x0000000000000010ULL
 #define LPTE_WIRED		0x0000000000000008ULL
 #define LPTE_BIG		0x0000000000000004ULL	/* 4kb/16Mb page */
 #define LPTE_HID		0x0000000000000002ULL


More information about the svn-src-projects mailing list