From 81ad52c7dbed9b0d228e9d028b6f6ab800bd1a68 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Sun, 19 Mar 2023 22:12:36 +0100 Subject: Add more time mount options to fusermount / fix lazytime Previous patch had forgotten fusermount. And also had "lazyatime" instead of "lazytime". --- util/fusermount.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'util') 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} }; -- cgit v1.2.1