xref: /minix/minix/lib/libsffs/const.h (revision 83133719)
1 #ifndef _SFFS_CONST_H
2 #define _SFFS_CONST_H
3 
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
7 
8 /* Number of entries in the name hashtable. */
9 #define NUM_HASH_SLOTS	1023
10 
11 /* Arbitrary block size constant returned by statvfs. Also used by getdents.
12  * This is not the underlying data transfer unit size.
13  */
14 #define BLOCK_SIZE	4096
15 
16 #endif /* _SFFS_CONST_H */
17