mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-07 17:55:55 +02:00
file-systems: Support the 'no-atime' flag.
* guix/build/syscalls.scm (MS_NOATIME): New variable. * gnu/build/file-systems.scm (mount-flags->bit-mask): Support it. * doc/guix.texi (File Systems): Document it and add cross-references to the relevant documentation. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
@@ -575,6 +575,8 @@ corresponds to the symbols listed in FLAGS."
|
||||
(logior MS_NODEV (loop rest)))
|
||||
(('no-exec rest ...)
|
||||
(logior MS_NOEXEC (loop rest)))
|
||||
(('no-atime rest ...)
|
||||
(logior MS_NOATIME (loop rest)))
|
||||
(()
|
||||
0))))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user