2012-04-09 18:08:26 +02:00
|
|
|
#ifndef _SFFS_CONST_H
|
|
|
|
#define _SFFS_CONST_H
|
2010-01-26 00:18:02 +01:00
|
|
|
|
|
|
|
/* Number of inodes. */
|
|
|
|
/* The following number must not exceed 16. The i_num field is only a short. */
|
|
|
|
#define NUM_INODE_BITS 8
|
|
|
|
|
|
|
|
/* Number of entries in the name hashtable. */
|
|
|
|
#define NUM_HASH_SLOTS 1023
|
|
|
|
|
2010-06-27 19:19:50 +02:00
|
|
|
/* Arbitrary block size constant returned by fstatfs and statvfs.
|
2012-04-09 17:17:42 +02:00
|
|
|
* Also used by getdents. This is not the underlying data transfer unit size.
|
2010-01-26 00:18:02 +01:00
|
|
|
*/
|
|
|
|
#define BLOCK_SIZE 4096
|
2012-04-09 18:08:26 +02:00
|
|
|
|
|
|
|
#endif /* _SFFS_CONST_H */
|