aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2021-09-21 13:46:10 +0000
committerAndrew Turner <andrew@FreeBSD.org>2021-10-11 10:50:42 +0000
commit1dac7b4b7ed6f30d088ac54f0dbf73d02fcad2c1 (patch)
tree52fbd29ed8233237b933f2333327b3086c8e7da8
parentcebda3bec001ae8182fb2f663af5b4d554f842fe (diff)
downloadsrc-1dac7b4b7ed6f30d088ac54f0dbf73d02fcad2c1.tar.gz
src-1dac7b4b7ed6f30d088ac54f0dbf73d02fcad2c1.zip
Fix the arm64 L2_BLOCK_MASK definition
It was missing the top 16 bits. Sponsored by: The FreeBSD Foundation (cherry picked from commit 5a619ca07a2d6614b7b4ecbb7078d0949702dcd2)
-rw-r--r--sys/arm64/include/pte.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm64/include/pte.h b/sys/arm64/include/pte.h
index 5d4412d2c141..b3bec720e9f9 100644
--- a/sys/arm64/include/pte.h
+++ b/sys/arm64/include/pte.h
@@ -125,7 +125,7 @@ typedef uint64_t pt_entry_t; /* page table entry */
#define L2_BLOCK L1_BLOCK
#define L2_TABLE L1_TABLE
-#define L2_BLOCK_MASK UINT64_C(0xffffffe00000)
+#define L2_BLOCK_MASK UINT64_C(0xffffffffffe00000)
/* Level 3 table, 4KiB per entry */
#define L3_SHIFT 12