From fca5dad6842317fee67e190455330a507161d65c Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 20 Oct 2005 20:11:51 +0000 Subject: [PATCH] Reduce buffer cache a bit to make space for boot device for drivers. --- include/minix/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/minix/config.h b/include/minix/config.h index afe8f342e..800ab5fd1 100755 --- a/include/minix/config.h +++ b/include/minix/config.h @@ -41,7 +41,7 @@ #if _MINIX_SMALL -#define NR_BUFS 128 +#define NR_BUFS 100 #define NR_BUF_HASH 128 #else @@ -53,7 +53,7 @@ #endif #if (MACHINE == IBM_PC && _WORD_SIZE == 4) -#define NR_BUFS 1280 /* # blocks in the buffer cache */ +#define NR_BUFS 1200 /* # blocks in the buffer cache */ #define NR_BUF_HASH 2048 /* size of buf hash table; MUST BE POWER OF 2*/ #endif -- 2.44.0