]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount_constants.h
mount.nfs: Fix some nfs_error() nits in network.c
[nfs-utils.git] / utils / mount / mount_constants.h
1 #ifndef _NFS_UTILS_MOUNT_CONSTANTS_H
2 #define _NFS_UTILS_MOUNT_CONSTANTS_H
3
4 #ifndef MS_DIRSYNC
5 #define MS_DIRSYNC      128     /* Directory modifications are synchronous */
6 #endif
7
8 #ifndef MS_ACTION_MASK
9 #define MS_ACTION_MASK  0x380
10 /* Remount, but new filesystem may be different from old. Atomic
11    (i.e. there is no interval when nothing is mounted at the mountpoint).
12    If new fs differs from the old one and old is busy - -EBUSY. */
13 #define MS_REPLACE      0x080   /* 128 */
14 /* After, Before: as soon as we get unions these will add a new member
15    in the end or beginning of the chain. Fail if there is a stack
16    on the mountpoint. */
17 #define MS_AFTER        0x100   /* 256 */
18 #define MS_BEFORE       0x180
19 /* Over: if nothing mounted on a mountpoint - same as if none of these
20 flags had been set; if we have a union with more than one element - fail;
21 if we have a stack or plain mount - mount atop of it, forming a stack. */
22 #define MS_OVER         0x200   /* 512 */
23 #endif
24 #ifndef MS_NOATIME
25 #define MS_NOATIME      0x400   /* 1024: Do not update access times. */
26 #endif
27 #ifndef MS_NODIRATIME
28 #define MS_NODIRATIME   0x800   /* 2048: Don't update directory access times */
29 #endif
30 #ifndef MS_BIND
31 #define MS_BIND         0x1000  /* 4096: Mount existing tree also elsewhere */
32 #endif
33 #ifndef MS_MOVE
34 #define MS_MOVE         0x2000  /* 8192: Atomically move tree */
35 #endif
36 #ifndef MS_REC
37 #define MS_REC          0x4000  /* 16384: Recursive loopback */
38 #endif
39 #ifndef MS_VERBOSE
40 #define MS_VERBOSE      0x8000  /* 32768 */
41 #endif
42 #ifndef MS_RELATIME
43 #define MS_RELATIME 0x200000 /* 200000: Update access times relative
44                                   to mtime/ctime */
45 #endif
46 /*
47  * NFS fs-specific mount option flags
48  *
49  * MS_DUMMY is assigned to mount options that are not to be
50  * passed to the kernel via the "flags" argument.  These are
51  * generally ignored or handled entirely in user space.
52  */
53 #define MS_DUMMY        0x00000000
54 #define MS_USERS        0x40000000
55 #define MS_USER         0x80000000
56
57 /*
58  * Magic mount flag number. Had to be or-ed to the flag values.
59  */
60 #ifndef MS_MGC_VAL
61 #define MS_MGC_VAL 0xC0ED0000   /* magic flag number to indicate "new" flags */
62 #endif
63 #ifndef MS_MGC_MSK
64 #define MS_MGC_MSK 0xffff0000   /* magic flag number mask */
65 #endif
66
67 #endif  /* _NFS_UTILS_MOUNT_CONSTANTS_H */