GNU bug report logs -
#49301
[PATCH 0/3] Give users control over file system checks.
Previous Next
Reported by: Tobias Geerinckx-Rice <me <at> tobias.gr>
Date: Wed, 30 Jun 2021 20:17:01 UTC
Severity: normal
Tags: patch
Done: Tobias Geerinckx-Rice <me <at> tobias.gr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Hey Tobias,
Wooh, nice one! Did you actually manage to test all those options for
all the supported file-systems :) ?
> -(define* (mount-file-system fs #:key (root "/root"))
> +(define* (mount-file-system fs #:key (root "/root")
> + (check? (file-system-check? fs))
> + (skip-check-if-clean?
> + (file-system-skip-check-if-clean? fs))
> + (repair (file-system-repair fs)))
This seems to be duplicated ...
> + (mount-file-system fs
> + #:check? (file-system-check? fs)
> + #:skip-check-if-clean?
> + (file-system-skip-check-if-clean? fs)
> + #:repair (file-system-repair fs)))
... here. You could maybe provide empty defaults in the
"mount-file-system" procedure declaration, or on the contrary just use
those default in this call.
Otherwise this seems fine. If all the installation tests are passing,
you can go for it!
Thanks,
Mathieu
This bug report was last modified 3 years and 244 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.