]> Zhao Yanbai Git Server - minix.git/commitdiff
Oops, set hash table size to non-power-of-two
authorBen Gras <ben@minix3.org>
Fri, 13 May 2005 14:57:09 +0000 (14:57 +0000)
committerBen Gras <ben@minix3.org>
Fri, 13 May 2005 14:57:09 +0000 (14:57 +0000)
include/minix/config.h

index 2378f5134d3f401d3df5d2b9643378d9d3f3ea69..facd996c12261e96dae513280f76d6dab22e1083 100755 (executable)
@@ -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)