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