From 27150b21c3366d6b474fe3e69140ecac65ab7ed2 Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Sat, 7 Jul 2012 23:59:42 +0000 Subject: Increase the slab collection interval * kern/slab.c (KMEM_GC_INTERVAL): Increase to 5 seconds. --- kern/slab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/slab.c b/kern/slab.c index 12e4ff4..ea38eb0 100644 --- a/kern/slab.c +++ b/kern/slab.c @@ -132,7 +132,7 @@ /* * Time (in seconds) between two garbage collection operations. */ -#define KMEM_GC_INTERVAL (1 * hz) +#define KMEM_GC_INTERVAL (5 * hz) /* * The transfer size of a CPU pool is computed by dividing the pool size by -- cgit v1.2.3