From c0773455397746b10194bc14c7cef144f4095b65 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 20 Oct 2022 21:20:36 +0200 Subject: file-systems: Support the 'no-diratime' mount flag. * gnu/build/file-systems.scm (mount-flags->bit-mask): Handle 'no-diratime'. * doc/guix.texi (File Systems): Document it. --- gnu/build/file-systems.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/build') diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 0ed5dc5671..0d7ff99f17 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -1132,6 +1132,8 @@ corresponds to the symbols listed in FLAGS." (logior MS_NOEXEC (loop rest))) (('no-atime rest ...) (logior MS_NOATIME (loop rest))) + (('no-diratime rest ...) + (logior MS_NODIRATIME (loop rest))) (('strict-atime rest ...) (logior MS_STRICTATIME (loop rest))) (('lazy-time rest ...) -- cgit v1.2.3