svn commit: r350134 - stable/12/sys/arm64/include

Mark Johnston markj at FreeBSD.org
Fri Jul 19 15:11:15 UTC 2019


Author: markj
Date: Fri Jul 19 15:11:14 2019
New Revision: 350134
URL: https://svnweb.freebsd.org/changeset/base/350134

Log:
  MFC r350037:
  Fix the arm64 page table entry attribute mask.

Modified:
  stable/12/sys/arm64/include/pte.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/arm64/include/pte.h
==============================================================================
--- stable/12/sys/arm64/include/pte.h	Fri Jul 19 15:10:53 2019	(r350133)
+++ stable/12/sys/arm64/include/pte.h	Fri Jul 19 15:11:14 2019	(r350134)
@@ -40,7 +40,7 @@ typedef	uint64_t	pt_entry_t;		/* page table entry */
 
 /* Block and Page attributes */
 /* TODO: Add the upper attributes */
-#define	ATTR_MASK_H	UINT64_C(0xfff0000000000000)
+#define	ATTR_MASK_H	UINT64_C(0xfffc000000000000)
 #define	ATTR_MASK_L	UINT64_C(0x0000000000000fff)
 #define	ATTR_MASK	(ATTR_MASK_H | ATTR_MASK_L)
 /* Bits 58:55 are reserved for software */


More information about the svn-src-stable-12 mailing list