From 454c3449b3b2c3d18188b325638faa5e09e7b163 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Fri, 13 May 2005 14:57:09 +0000 Subject: [PATCH] Oops, set hash table size to non-power-of-two --- 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 2378f5134..facd996c1 100755 --- a/include/minix/config.h +++ b/include/minix/config.h @@ -38,8 +38,8 @@ #endif #if (MACHINE == IBM_PC && _WORD_SIZE == 4) -#define NR_BUFS 1024 /* # blocks in the buffer cache */ -#define NR_BUF_HASH 1024 /* size of buf hash table; MUST BE POWER OF 2*/ +#define NR_BUFS 1536 /* # blocks in the buffer cache */ +#define NR_BUF_HASH 2048 /* size of buf hash table; MUST BE POWER OF 2*/ #endif #if (MACHINE == SUN_4_60)