1 #ifndef __PFS_CONST_H__
2 #define __PFS_CONST_H__
4 #define NR_INODES 256 /* # slots in "in core" inode table */
6 /* Size of descriptor table for unix domain sockets. This should be
7 * equal to the maximum number of minor devices (currently 256).
11 #define INODE_HASH_LOG2 7 /* 2 based logarithm of the inode hash size */
12 #define INODE_HASH_SIZE ((unsigned long)1<<INODE_HASH_LOG2)
13 #define INODE_HASH_MASK (((unsigned long)1<<INODE_HASH_LOG2)-1)
16 /* The type of sizeof may be (unsigned) long. Use the following macro for
17 * taking the sizes of small objects so that there are no surprises like
18 * (small) long constants being passed to routines expecting an int.
20 #define usizeof(t) ((unsigned) sizeof(t))
22 /* Miscellaneous constants */
23 #define INVAL_UID ((uid_t) -1) /* Invalid user ID */
24 #define INVAL_GID ((gid_t) -1) /* Invalid group ID */
25 #define NORMAL 0 /* forces get_block to do disk read */
26 #define NO_READ 1 /* prevents get_block from doing disk read */
27 #define PREFETCH 2 /* tells get_block not to read or mark dev */
29 #define NO_BIT ((bit_t) 0) /* returned by alloc_bit() to signal failure */
31 #define ATIME 002 /* set if atime field needs updating */
32 #define CTIME 004 /* set if ctime field needs updating */
33 #define MTIME 010 /* set if mtime field needs updating */
35 #define FS_BITMAP_CHUNKS(b) ((b)/usizeof (bitchunk_t))/* # map chunks/blk */
36 #define FS_BITCHUNK_BITS (usizeof(bitchunk_t) * CHAR_BIT)
37 #define FS_BITS_PER_BLOCK(b) (FS_BITMAP_CHUNKS(b) * FS_BITCHUNK_BITS)
39 #define FS_CALL_VEC_SIZE 31
40 #define DEV_CALL_VEC_SIZE 25