2005-04-21 16:53:53 +02:00
|
|
|
/* Tables sizes */
|
2006-10-25 15:40:36 +02:00
|
|
|
#define NR_FILPS 512 /* # slots in filp table */
|
2005-04-21 16:53:53 +02:00
|
|
|
#define NR_LOCKS 8 /* # slots in the file locking table */
|
2010-08-17 12:02:50 +02:00
|
|
|
#define NR_MNTS 16 /* # slots in mount table */
|
2009-05-08 16:12:41 +02:00
|
|
|
#define NR_VNODES 512 /* # slots in vnode table */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-01-13 00:08:50 +01:00
|
|
|
#define NR_NONEDEVS NR_MNTS /* # slots in nonedev bitmap */
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/* Miscellaneous constants */
|
|
|
|
#define SU_UID ((uid_t) 0) /* super_user's uid_t */
|
2010-01-05 20:39:27 +01:00
|
|
|
#define SYS_UID ((uid_t) 0) /* uid_t for system processes and INIT */
|
|
|
|
#define SYS_GID ((gid_t) 0) /* gid_t for system processes and INIT */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2009-09-22 23:48:26 +02:00
|
|
|
#define FP_BLOCKED_ON_NONE 0 /* not blocked */
|
|
|
|
#define FP_BLOCKED_ON_PIPE 1 /* susp'd on pipe */
|
|
|
|
#define FP_BLOCKED_ON_LOCK 2 /* susp'd on lock */
|
|
|
|
#define FP_BLOCKED_ON_POPEN 3 /* susp'd on pipe open */
|
|
|
|
#define FP_BLOCKED_ON_SELECT 4 /* susp'd on select */
|
|
|
|
#define FP_BLOCKED_ON_DOPEN 5 /* susp'd on device open */
|
|
|
|
#define FP_BLOCKED_ON_OTHER 6 /* blocked on other process, check
|
|
|
|
fp_task to find out */
|
|
|
|
|
|
|
|
/* test if the process is blocked on something */
|
|
|
|
#define fp_is_blocked(fp) ((fp)->fp_blocked_on != FP_BLOCKED_ON_NONE)
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#define DUP_MASK 0100 /* mask to distinguish dup2 from dup */
|
|
|
|
|
2005-08-29 18:47:18 +02:00
|
|
|
#define LOOK_UP 0 /* tells search_dir to lookup string */
|
|
|
|
#define ENTER 1 /* tells search_dir to make dir entry */
|
|
|
|
#define DELETE 2 /* tells search_dir to delete entry */
|
|
|
|
#define IS_EMPTY 3 /* tells search_dir to ret. OK or ENOTEMPTY */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-12-20 15:23:44 +01:00
|
|
|
#define SYMLOOP 16
|
|
|
|
|
2010-01-13 00:08:50 +01:00
|
|
|
#define LABEL_MAX 16 /* maximum label size (including '\0'). Should
|
|
|
|
* not be smaller than 16 or bigger than
|
|
|
|
* M3_LONG_STRING.
|
|
|
|
*/
|
|
|
|
|
2007-08-07 14:52:47 +02:00
|
|
|
/* Args to dev_io */
|
2007-02-07 17:22:19 +01:00
|
|
|
#define VFS_DEV_READ 2001
|
|
|
|
#define VFS_DEV_WRITE 2002
|
|
|
|
#define VFS_DEV_SCATTER 2003
|
|
|
|
#define VFS_DEV_GATHER 2004
|
|
|
|
#define VFS_DEV_IOCTL 2005
|
|
|
|
#define VFS_DEV_SELECT 2006
|