aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-08-06 04:58:05 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-08-06 04:58:05 +0000
commit507b10b48c00da6aa2da837460475717ad25c5f6 (patch)
tree4aaed1c661b7691376fdaa8ebd016383a014d6ee /sys/vm/vm_map.c
parent16050303bd356b9c0b1d872bf0622b81cbc06322 (diff)
Notes
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 51d60d5ef3df..4019599faf80 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_map.c,v 1.83 1997/08/05 22:24:28 dyson Exp $
+ * $Id: vm_map.c,v 1.84 1997/08/05 23:03:23 dyson Exp $
*/
/*
@@ -208,11 +208,11 @@ vmspace_alloc(min, max, pageable)
void
vm_init2(void) {
zinitna(kmapentzone, &kmapentobj,
- NULL, 0, 4096, ZONE_INTERRUPT, 4);
+ NULL, 0, cnt.v_page_count / 4, ZONE_INTERRUPT, 4);
zinitna(mapentzone, &mapentobj,
NULL, 0, 0, 0, 4);
zinitna(mapzone, &mapobj,
- NULL, 0, 0, 0, 4);
+ NULL, 0, 0, 0, 1);
pmap_init2();
}