b48b037fbe
servers/hgfs/hgfs_server => servers/hgfs servers/hgfs/libhgfs => lib/libhgfs servers/rs/service => commands/service drivers/memory/memory_driver => drivers/memory drivers/memory/ramdisk => drivers/ramdisk
12 lines
385 B
C
12 lines
385 B
C
|
|
/* 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
|
|
|
|
/* Arbitrary block size constant returned by fstatfs. du(1) uses this.
|
|
* Also used by getdents. This is not the actual HGFS data transfer unit size.
|
|
*/
|
|
#define BLOCK_SIZE 4096
|