diff options
| -rw-r--r-- | sys/vm/vm_object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index e51b6c07c755..384cdea8f6b8 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.48 1995/06/11 19:31:53 rgrimes Exp $ + * $Id: vm_object.c,v 1.48.2.1 1995/06/14 17:21:58 davidg Exp $ */ /* @@ -174,7 +174,7 @@ vm_object_init(vm_offset_t nothing) 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; for (i = 0; i < VM_OBJECT_HASH_COUNT; i++) LIST_INIT(&vm_object_hashtable[i]); |
