|
#define | MAXFIDSZ 16 |
|
#define | MFSNAMELEN 16 /* length of type name including null */ |
|
#define | MNAMELEN 88 /* size of on/from name bufs */ |
|
#define | MNT_RDONLY 0x00000001 /* read only filesystem */ |
|
#define | MNT_SYNCHRONOUS 0x00000002 /* filesystem written synchronously */ |
|
#define | MNT_NOEXEC 0x00000004 /* can't exec from filesystem */ |
|
#define | MNT_NOSUID 0x00000008 /* don't honor setuid bits on fs */ |
|
#define | MNT_NODEV 0x00000010 /* don't interpret special files */ |
|
#define | MNT_UNION 0x00000020 /* union with underlying filesystem */ |
|
#define | MNT_ASYNC 0x00000040 /* filesystem written asynchronously */ |
|
#define | MNT_NOATIME 0x10000000 /* disable update of file access time */ |
|
#define | MNT_EXRDONLY 0x00000080 /* exported read only */ |
|
#define | MNT_EXPORTED 0x00000100 /* filesystem is exported */ |
|
#define | MNT_DEFEXPORTED 0x00000200 /* exported to the world */ |
|
#define | MNT_EXPORTANON 0x00000400 /* use anon uid mapping for everyone */ |
|
#define | MNT_EXKERB 0x00000800 /* exported with Kerberos uid mapping */ |
|
#define | MNT_EXPUBLIC 0x20000000 /* public export (WebNFS) */ |
|
#define | MNT_LOCAL 0x00001000 /* filesystem is stored locally */ |
|
#define | MNT_QUOTA 0x00002000 /* quotas are enabled on filesystem */ |
|
#define | MNT_ROOTFS 0x00004000 /* identifies the root filesystem */ |
|
#define | MNT_USER 0x00008000 /* mounted by a user */ |
|
#define | MNT_IGNORE 0x00800000 /* do not show entry in df */ |
|
#define | MNT_UPDATE 0x00010000 /* not a real mount, just an update */ |
|
#define | MNT_DELEXPORT 0x00020000 /* delete export host lists */ |
|
#define | MNT_RELOAD 0x00040000 /* reload filesystem data */ |
|
#define | MNT_FORCE 0x00080000 /* force unmount or readonly change */ |
|