]> Zhao Yanbai Git Server - minix.git/commitdiff
Increase NR_INODES in the FS servers to match NR_VNODES in VFS
authorErik van der Kouwe <erik@minix3.org>
Thu, 5 Aug 2010 11:37:37 +0000 (11:37 +0000)
committerErik van der Kouwe <erik@minix3.org>
Thu, 5 Aug 2010 11:37:37 +0000 (11:37 +0000)
servers/ext2/const.h
servers/mfs/const.h

index a939716f00167cd29aca098608ea216078cfbcf0..6a511cafdf492d326bdbd441d1fbfeffb597c0ed 100644 (file)
@@ -3,7 +3,10 @@
 
 /* Tables sizes */
 
-#define NR_INODES        256    /* # slots in "in core" inode table */
+#define NR_INODES        512    /* # slots in "in core" inode table;
+                                * should be more or less the same as
+                                * NR_VNODES in vfs
+                                */
 #define GETDENTS_BUFSIZ  257
 
 #define INODE_HASH_LOG2   7     /* 2 based logarithm of the inode hash size */
index 4ec9a5efaab050ae8fc8928c24040e9dc2ece557..8d88fbf1a0ec9a12b3d84c35ebc08d43c50353c0 100644 (file)
@@ -7,7 +7,10 @@
 #define V2_NR_DZONES       7   /* # direct zone numbers in a V2 inode */
 #define V2_NR_TZONES      10   /* total # zone numbers in a V2 inode */
 
-#define NR_INODES        256   /* # slots in "in core" inode table */
+#define NR_INODES        512   /* # slots in "in core" inode table,
+                                * should be more or less the same as
+                                * NR_VNODES in vfs
+                                */
 #define GETDENTS_BUFSIZ  257
 
 #define INODE_HASH_LOG2   7     /* 2 based logarithm of the inode hash size */