]> Zhao Yanbai Git Server - minix.git/commitdiff
Maximum block size lowered to 4K (gasp) !
authorBen Gras <ben@minix3.org>
Fri, 12 Aug 2005 12:41:29 +0000 (12:41 +0000)
committerBen Gras <ben@minix3.org>
Fri, 12 Aug 2005 12:41:29 +0000 (12:41 +0000)
include/dirent.h
include/minix/config.h

index cd373f4ba9ea2671d544dfb48a2b3ec1f591f414..cc05765786ba12c8ba27f2226754307719f79e33 100755 (executable)
@@ -47,7 +47,7 @@ struct _v7_direct {
  * 3 of these blocks and has to fit within 64kB, so this can't be
  * increased without taking that into account.
  */
-#define MAX_BLOCK_SIZE          8192
+#define MAX_BLOCK_SIZE          4096
 
 /* This is the block size for the fixed versions of the filesystem (V1/V2) */
 #define STATIC_BLOCK_SIZE      1024
index eb566deb775b078078dfff7b9932093698952a03..d9c3caf939a70074327db84025ac2cf1a2697a5d 100755 (executable)
@@ -43,7 +43,7 @@
 #endif
 
 #if (MACHINE == IBM_PC && _WORD_SIZE == 4)
-#define NR_BUFS         1536   /* # blocks in the buffer cache */
+#define NR_BUFS         1500   /* # blocks in the buffer cache */
 #define NR_BUF_HASH     2048   /* size of buf hash table; MUST BE POWER OF 2*/
 #endif