]> git.ipfire.org Git - thirdparty/util-linux.git/blobdiff - mount/mount_constants.h
Imported from util-linux-2.11b tarball.
[thirdparty/util-linux.git] / mount / mount_constants.h
index 5fd29082917bdd8d03717fca62cb5efbdd75ac68..cdbced881422922908f4bab7348d9210265325f5 100644 (file)
@@ -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.