diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-02-26 01:00:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-02-26 01:00:07 +0100 |
commit | 4ef9a5dd5ec07d2cf4326b65d44a9227d184a56e (patch) | |
tree | 878d904cc3f0de7c55a425de57bb608560f3395c /gnu/build | |
parent | 997b93cc4a6deff54ebd854a716cca94095114bf (diff) | |
download | guix-4ef9a5dd5ec07d2cf4326b65d44a9227d184a56e.tar.gz |
file-systems: Validate 'no-diratime flag.
This follows up on commit c0773455397746b10194bc14c7cef144f4095b65, and adds a comment to avoid this in future. * gnu/system/file-systems.scm (invalid-file-system-flags): Add 'no-diratime to the list of KNOWN-FLAGS.
Diffstat (limited to 'gnu/build')
-rw-r--r-- | gnu/build/file-systems.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 66ca22d6ea..36a59f5f5c 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -1123,6 +1123,7 @@ an exception in such cases but perform the nearest sane action." "Return the number suitable for the 'flags' argument of 'mount' that corresponds to the symbols listed in FLAGS." (let loop ((flags flags)) + ;; Note: Keep in sync with ‘invalid-file-system-flags’. (match flags (('read-only rest ...) (logior MS_RDONLY (loop rest))) |