Add more time mount options
authorBernd Schubert <bschubert@ddn.com>
Sat, 18 Mar 2023 18:51:42 +0000 (19:51 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 19 Mar 2023 15:13:57 +0000 (15:13 +0000)
These are especially needed for xfstests, but also
useful in general.

lib/mount.c

index bda3c47f234fcd676502c0b7bf10087b6d4a07b3..8561d5c93131efe6487bd8e11b00cf2e6cff3f41 100644 (file)
@@ -112,6 +112,14 @@ static const struct fuse_opt fuse_mount_opts[] = {
        FUSE_OPT_KEY("dirsync",                 KEY_KERN_FLAG),
        FUSE_OPT_KEY("atime",                   KEY_KERN_FLAG),
        FUSE_OPT_KEY("noatime",                 KEY_KERN_FLAG),
+       FUSE_OPT_KEY("diratime",                KEY_KERN_FLAG),
+       FUSE_OPT_KEY("nodiratime",              KEY_KERN_FLAG),
+       FUSE_OPT_KEY("lazyatime",               KEY_KERN_FLAG),
+       FUSE_OPT_KEY("nolazyatime",             KEY_KERN_FLAG),
+       FUSE_OPT_KEY("relatime",                KEY_KERN_FLAG),
+       FUSE_OPT_KEY("norelatime",              KEY_KERN_FLAG),
+       FUSE_OPT_KEY("strictatime",             KEY_KERN_FLAG),
+       FUSE_OPT_KEY("nostrictatime",           KEY_KERN_FLAG),
        FUSE_OPT_END
 };
 
@@ -151,6 +159,14 @@ static const struct mount_flags mount_flags[] = {
        {"sync",    MS_SYNCHRONOUS, 1},
        {"atime",   MS_NOATIME,     0},
        {"noatime", MS_NOATIME,     1},
+       {"diratime",        MS_NODIRATIME,      0},
+       {"nodiratime",      MS_NODIRATIME,      1},
+       {"lazytime",        MS_LAZYTIME,        1},
+       {"nolazytime",      MS_LAZYTIME,        0},
+       {"relatime",        MS_RELATIME,        1},
+       {"norelatime",      MS_RELATIME,        0},
+       {"strictatime",     MS_STRICTATIME,     1},
+       {"nostrictatime",   MS_STRICTATIME,     0},
 #ifndef __NetBSD__
        {"dirsync", MS_DIRSYNC,     1},
 #endif