summaryrefslogtreecommitdiff
path: root/util/fusermount.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/fusermount.c')
-rw-r--r--util/fusermount.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/util/fusermount.c b/util/fusermount.c
index 50989eb..6e72f0d 100644
--- a/util/fusermount.c
+++ b/util/fusermount.c
@@ -594,6 +594,14 @@ static struct mount_flags mount_flags[] = {
{"sync", MS_SYNCHRONOUS, 1, 1},
{"atime", MS_NOATIME, 0, 1},
{"noatime", MS_NOATIME, 1, 1},
+ {"diratime", MS_NODIRATIME, 0, 1},
+ {"nodiratime", MS_NODIRATIME, 1, 1},
+ {"lazytime", MS_LAZYTIME, 1, 1},
+ {"nolazytime", MS_LAZYTIME, 0, 1},
+ {"relatime", MS_RELATIME, 1, 1},
+ {"norelatime", MS_RELATIME, 0, 1},
+ {"strictatime", MS_STRICTATIME, 1, 1},
+ {"nostrictatime", MS_STRICTATIME, 0, 1},
{"dirsync", MS_DIRSYNC, 1, 1},
{NULL, 0, 0, 0}
};