summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-09-10 18:49:46 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-09-10 18:49:46 +0000
commitb3c8c11717dc2654a849620f8f2671da4b4042fd (patch)
tree03f29ae358d0dbf5a8ac49aa7b0a310d1b0ad6b1 /sys/kern
parentf9bdf407d1c2a9694df07c9cf1d03a399b8d3c7e (diff)
Introduce a md pmap hook, pmap_remove_holes(), which is supposed to mark
the holes a MMU may have from a given vm_map. This will be automagically invoked for newly created vmspaces. On platforms with MMU holes (e.g. sun4, sun4c and vax), this prevents mmap(2) hints which would end up being in the hole to be accepted as valid, causing unexpected signals when the process tries to access the hole (since pmap can not fill the hole anyway). Unfortunately, the logic mmap() uses to pick a valid address for anonymous mappings needs work, as it will only try to find an address higher than the hint, which causes all mmap() with a hint in the hole to fail on vax. This will be improved later.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/init_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 44d61a422d2..e3047847f8f 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init_main.c,v 1.143 2007/07/25 23:11:52 art Exp $ */
+/* $OpenBSD: init_main.c,v 1.144 2007/09/10 18:49:45 miod Exp $ */
/* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */
/*
@@ -310,7 +310,7 @@ main(void *framep)
/* Allocate a prototype map so we have something to fork. */
uvmspace_init(&vmspace0, pmap_kernel(), round_page(VM_MIN_ADDRESS),
- trunc_page(VM_MAX_ADDRESS), TRUE);
+ trunc_page(VM_MAX_ADDRESS), TRUE, TRUE);
p->p_vmspace = &vmspace0;
p->p_addr = proc0paddr; /* XXX */