diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 2288e2c7f..4cc1d4bee 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -137,6 +137,8 @@ static const int32_t mount_options[] = { | |||
137 | /* "nodiratime" */ MS_NODIRATIME, | 137 | /* "nodiratime" */ MS_NODIRATIME, |
138 | /* "mand" */ MS_MANDLOCK, | 138 | /* "mand" */ MS_MANDLOCK, |
139 | /* "nomand" */ ~MS_MANDLOCK, | 139 | /* "nomand" */ ~MS_MANDLOCK, |
140 | /* "relatime" */ MS_RELATIME, | ||
141 | /* "norelatime" */ ~MS_RELATIME, | ||
140 | /* "loud" */ ~MS_SILENT, | 142 | /* "loud" */ ~MS_SILENT, |
141 | 143 | ||
142 | // action flags | 144 | // action flags |
@@ -189,6 +191,8 @@ static const char mount_option_str[] = | |||
189 | "nodiratime" "\0" | 191 | "nodiratime" "\0" |
190 | "mand" "\0" | 192 | "mand" "\0" |
191 | "nomand" "\0" | 193 | "nomand" "\0" |
194 | "relatime" "\0" | ||
195 | "norelatime" "\0" | ||
192 | "loud" "\0" | 196 | "loud" "\0" |
193 | 197 | ||
194 | // action flags | 198 | // action flags |