On Thu, Sep 22, 2022 at 03:48:19PM +0200, Pavel Reichl wrote: > This is obviously mostly problematic for FS lacking support for sparse > files. > > Signed-off-by: Pavel Reichl <preichl@xxxxxxxxxx> > --- > common/rc | 1 + > tests/generic/692 | 0 > 2 files changed, 1 insertion(+) > mode change 100644 => 100755 tests/generic/692 > > diff --git a/common/rc b/common/rc > index 228fcb37..c9078649 100644 > --- a/common/rc > +++ b/common/rc > @@ -4637,6 +4637,7 @@ _get_max_file_size() > l=$m > fi > done > + rm -f $testfile > echo $l > } Removing the file is fine, but I didn't have filesystems that lack support for sparse files in mind when I wrote this function. Maybe it should look at $FSTYP first, and only use the generic algorithm as a fallback for unhandled types? - Eric