]> Zhao Yanbai Git Server - minix.git/commitdiff
NR_BUFS forced low if a small minix symbol is defined
authorBen Gras <ben@minix3.org>
Mon, 29 Aug 2005 20:00:14 +0000 (20:00 +0000)
committerBen Gras <ben@minix3.org>
Mon, 29 Aug 2005 20:00:14 +0000 (20:00 +0000)
include/minix/config.h

index 62eddf0e892e8dc2769d1bc72773e4a0c0808880..8b8e087e52d9babdbc2831bddb8e7aa93b37194f 100755 (executable)
 #define NR_PROCS         _NR_PROCS 
 #define NR_SYS_PROCS      _NR_SYS_PROCS
 
+#if _MINIX_SMALL
+
+#define NR_BUFS        20
+#define NR_BUF_HASH 32
+#else
 /* The buffer cache should be made as large as you can afford. */
 #if (MACHINE == IBM_PC && _WORD_SIZE == 2)
 #define NR_BUFS           40   /* # blocks in the buffer cache */
@@ -55,6 +60,8 @@
 #define NR_BUF_HASH     512    /* size of buf hash table; MUST BE POWER OF 2*/
 #endif
 
+#endif /* _MINIX_SMALL */
+
 /* Number of controller tasks (/dev/cN device classes). */
 #define NR_CTRLRS          2