summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1996-01-04 18:32:31 +0000
committerDavid Greenman <dg@FreeBSD.org>1996-01-04 18:32:31 +0000
commita2d5b14236db03b95b81b6e56cc8b9b73b1355b7 (patch)
treea99fd812e1e253c33ebe1068e779f3980ca7478a
parent7ae3d559981a0709e32e0e5ab58d09a53036e3d1 (diff)
Notes
-rw-r--r--sys/vm/vm_object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 7d14fb0c7bee..37bf211aea6e 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_object.c,v 1.59 1995/12/11 04:58:20 dyson Exp $
+ * $Id: vm_object.c,v 1.60 1995/12/14 09:55:03 phk Exp $
*/
/*
@@ -188,7 +188,7 @@ vm_object_init()
vm_object_cache_max = 84;
if (cnt.v_page_count > 1000)
- vm_object_cache_max += (cnt.v_page_count - 1000) / 4;
+ vm_object_cache_max += (cnt.v_page_count - 1000) / 3;
kernel_object = &kernel_object_store;
_vm_object_allocate(OBJT_DEFAULT, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),