aboutsummaryrefslogtreecommitdiff
path: root/sys/i386
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2020-09-02 18:16:43 +0000
committerMark Johnston <markj@FreeBSD.org>2020-09-02 18:16:43 +0000
commit847ab36bf22766020077f06f6a8d278f8b081655 (patch)
tree039e24912a42c2379afa8cc204f216d3bdbb76d9 /sys/i386
parent2825bf5b2a209d626a50e97ce98d508464d32366 (diff)
Notes
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/pmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index e63a24b8da7b9..bc650cf378e0b 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -5755,7 +5755,7 @@ __CONCAT(PMTYPE, mincore)(pmap_t pmap, vm_offset_t addr, vm_paddr_t *pap)
/* Compute the physical address of the 4KB page. */
pa = ((pde & PG_PS_FRAME) | (addr & PDRMASK)) &
PG_FRAME;
- val = MINCORE_SUPER;
+ val = MINCORE_PSIND(1);
} else {
pte = pmap_pte_ufast(pmap, addr, pde);
pa = pte & PG_FRAME;