1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Revert to previous calculation of vm_object_cache_max: it simply works

better in most real-world cases.
This commit is contained in:
David Greenman 1996-03-29 06:28:48 +00:00
parent ad6dc98242
commit 46268a606f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14900

View File

@ -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.65 1996/03/11 06:11:41 hsu Exp $
* $Id: vm_object.c,v 1.66 1996/03/28 04:53:26 dyson Exp $
*/
/*
@ -190,7 +190,7 @@ vm_object_init()
vm_object_cache_max = 84;
if (cnt.v_page_count > 1000)
vm_object_cache_max += (cnt.v_page_count - 1000) / 3;
vm_object_cache_max += (cnt.v_page_count - 1000) / 4;
kernel_object = &kernel_object_store;
_vm_object_allocate(OBJT_DEFAULT, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),