aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util-linux/mount.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 35fd30323..0bc46ecb5 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -75,6 +75,7 @@ enum {
75 MS_NOATIME = 1024, /* Do not update access times. */ 75 MS_NOATIME = 1024, /* Do not update access times. */
76 MS_NODIRATIME = 2048, /* Do not update directory access times */ 76 MS_NODIRATIME = 2048, /* Do not update directory access times */
77 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */ 77 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */
78 MS_MOVE = 8192, /* Use the new linux 2.4.x "mount --move" feature */
78}; 79};
79 80
80 81
@@ -117,6 +118,7 @@ static const struct mount_options mount_options[] = {
117 {"suid", ~MS_NOSUID, 0}, 118 {"suid", ~MS_NOSUID, 0},
118 {"sync", ~0, MS_SYNCHRONOUS}, 119 {"sync", ~0, MS_SYNCHRONOUS},
119 {"bind", ~0, MS_BIND}, 120 {"bind", ~0, MS_BIND},
121 {"move", ~0, MS_MOVE},
120 {0, 0, 0} 122 {0, 0, 0}
121}; 123};
122 124