diff options
| author | Karel Zak <kzak@redhat.com> | 2006-12-07 00:25:46 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2006-12-07 00:25:46 +0100 |
| commit | c07ebfa1e02d208ab12430e6791ea147bcfaf9c0 (patch) | |
| tree | d44a755098286f5d553c7aea1a73d98c2995d6ec /mount/mount_constants.h | |
| parent | 66ee8158b69525e12060ef558cb5d77feadab1dc (diff) | |
| download | util-linux-c07ebfa1e02d208ab12430e6791ea147bcfaf9c0.tar.gz | |
Imported from util-linux-2.11b tarball.v2.11b
Diffstat (limited to 'mount/mount_constants.h')
| -rw-r--r-- | mount/mount_constants.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mount/mount_constants.h b/mount/mount_constants.h index 5fd2908291..cdbced8814 100644 --- a/mount/mount_constants.h +++ b/mount/mount_constants.h @@ -36,13 +36,16 @@ if we have a stack or plain mount - mount atop of it, forming a stack. */ #define MS_OVER 0x200 /* 512 */ #endif #ifndef MS_NOATIME -#define MS_NOATIME 1024 /* Do not update access times. */ +#define MS_NOATIME 0x400 /* 1024: Do not update access times. */ #endif #ifndef MS_NODIRATIME -#define MS_NODIRATIME 2048 /* Do not update directory access times */ +#define MS_NODIRATIME 0x800 /* 2048: Don't update directory access times */ #endif #ifndef MS_BIND -#define MS_BIND 4096 +#define MS_BIND 0x1000 /* 4096: Mount existing tree also elsewhere */ +#endif +#ifndef MS_MOVE +#define MS_MOVE 0x2000 /* 8192: Atomically move tree */ #endif /* * Magic mount flag number. Has to be or-ed to the flag values. |
