4 /* Number of inodes. */
5 /* The following number must not exceed 16. The i_num field is only a short. */
6 #define NUM_INODE_BITS 8
8 /* Number of entries in the name hashtable. */
9 #define NUM_HASH_SLOTS 1023
11 /* Arbitrary block size constant returned by fstatfs and statvfs.
12 * Also used by getdents. This is not the underlying data transfer unit size.
14 #define BLOCK_SIZE 4096
16 #endif /* _SFFS_CONST_H */