git: 89a2ef4d5226 - main - arm64: Ignore 1GB mappings in pmap_advise()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 24 Sep 2022 13:38:19 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=89a2ef4d5226135deb89cececdf32d55812d84fd
commit 89a2ef4d5226135deb89cececdf32d55812d84fd
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-09-24 13:26:54 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-09-24 13:28:41 +0000
arm64: Ignore 1GB mappings in pmap_advise()
For the same reason as commit 4c224f8e5f36cfad5a9af8db7c7acdecc3d4c7b5.
MFC after: 1 week
---
sys/arm64/arm64/pmap.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys/arm64/arm64/pmap.c b/sys/arm64/arm64/pmap.c
index 697bf9665133..a4acb6a61600 100644
--- a/sys/arm64/arm64/pmap.c
+++ b/sys/arm64/arm64/pmap.c
@@ -5804,10 +5804,6 @@ pmap_advise(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, int advice)
continue;
if ((pmap_load(l1) & ATTR_DESCR_MASK) == L1_BLOCK) {
PMAP_ASSERT_L1_BLOCKS_SUPPORTED;
- KASSERT(va_next <= eva,
- ("partial update of non-transparent 1G page "
- "l1 %#lx sva %#lx eva %#lx va_next %#lx",
- pmap_load(l1), sva, eva, va_next));
continue;
}