Add more time mount options to fusermount / fix lazytime
authorBernd Schubert <bschubert@ddn.com>
Sun, 19 Mar 2023 21:12:36 +0000 (22:12 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 20 Mar 2023 09:00:14 +0000 (09:00 +0000)
Previous patch had forgotten fusermount. And also had "lazyatime"
instead of "lazytime".

lib/mount.c
util/fusermount.c

index 8561d5c93131efe6487bd8e11b00cf2e6cff3f41..1f1ee860d2a3908d2e8a7e601879b8f4567bb1ef 100644 (file)
@@ -114,8 +114,8 @@ static const struct fuse_opt fuse_mount_opts[] = {
        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("lazytime",                KEY_KERN_FLAG),
+       FUSE_OPT_KEY("nolazytime",              KEY_KERN_FLAG),
        FUSE_OPT_KEY("relatime",                KEY_KERN_FLAG),
        FUSE_OPT_KEY("norelatime",              KEY_KERN_FLAG),
        FUSE_OPT_KEY("strictatime",             KEY_KERN_FLAG),
index 50989eb1fdba76afe77006e8cbe6bb2980ef812e..6e72f0d344aa5417731a9a4e113faa427723c4ec 100644 (file)
@@ -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}
 };