diff options
author | Samuel Thibault <sthibault@debian.org> | 2009-01-01 14:01:06 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2009-01-01 14:01:06 +0000 |
commit | 7e398d11a558dad86c8b398fccd9e57b420bca55 (patch) | |
tree | 63ee8df7bcb71482b7d37770e1caec0d437b4064 /debian | |
parent | 187334a65f9084ea2793f072609dd3ff4828505f (diff) |
increase maximum number of cached objects.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/patches/14_alloc_params.patch | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 264b947..dbea247 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,8 @@ gnumach (2:1.3.99.dfsg.cvs20080708-2) UNRELEASED; urgency=low [ Samuel Thibault ] * Remove kern/mach_param.h patch from debian/patches/14_alloc_params.patch, - increase zone_map_size and kernel virtual space. + increase zone_map_size, kernel virtual space and maximum number of cached + objects. -- Guillem Jover <guillem@debian.org> Tue, 08 Jul 2008 16:54:06 +0300 diff --git a/debian/patches/14_alloc_params.patch b/debian/patches/14_alloc_params.patch index bb928b9..befe470 100644 --- a/debian/patches/14_alloc_params.patch +++ b/debian/patches/14_alloc_params.patch @@ -10,7 +10,7 @@ 2007-08-20 Samuel Thibault <samuel.thibault@ens-lyon.org> - * vm/vm_object.c (vm_object_cached_max): Increase from 200 to 2000. + * vm/vm_object.c (vm_object_cached_max): Increase from 200 to 4000. Index: b/kern/zalloc.c =================================================================== @@ -34,7 +34,7 @@ Index: b/vm/vm_object.c queue_head_t vm_object_cached_list; int vm_object_cached_count; -int vm_object_cached_max = 200; /* may be patched*/ -+int vm_object_cached_max = 2000; /* may be patched*/ ++int vm_object_cached_max = 4000; /* may be patched*/ decl_simple_lock_data(,vm_object_cached_lock_data) |