From 78adc698afb19dea93cb6acceaeb1413f1cfe931 Mon Sep 17 00:00:00 2001 From: ru Date: Wed, 26 Sep 2007 11:22:23 +0000 Subject: [PATCH] Fix the description of the formula used to autosize the number of buffers in the buffer cache. Approved by: re (kensmith) --- sys/kern/vfs_bio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index bb457db5f82b..d3344597f418 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -467,7 +467,7 @@ kern_vfs_bio_buffer_alloc(caddr_t v, long physmem_est) * The nominal buffer size (and minimum KVA allocation) is BKVASIZE. * For the first 64MB of ram nominally allocate sufficient buffers to * cover 1/4 of our ram. Beyond the first 64MB allocate additional - * buffers to cover 1/20 of our ram over 64MB. When auto-sizing + * buffers to cover 1/10 of our ram over 64MB. When auto-sizing * the buffer cache we limit the eventual kva reservation to * maxbcache bytes. *