2 /* Number of inodes. */
3 /* The following number must not exceed 16. The i_num field is only a short. */
4 #define NUM_INODE_BITS 8
6 /* Number of entries in the name hashtable. */
7 #define NUM_HASH_SLOTS 1023
9 /* Arbitrary block size constant returned by fstatfs. du(1) uses this.
10 * Also used by getdents. This is not the actual HGFS data transfer unit size.
12 #define BLOCK_SIZE 4096