Hi Cyril, ... > > +# directory mounted by NFS client > > +get_local_dir() > > +{ > > + local v="$1" > > + local n="$2" > > + > > + echo "$TST_TMPDIR/$v/$n" > > +} > > + > > +# directory on NFS server > > +get_remote_dir() > > +{ > > + local v="$1" > > + local n="$2" > > + > > + echo "$TST_TMPDIR/$v/$n" > > +} > It's a bit puzzling why we have two identical functions with a different > name... It's a preparation for TST_ALL_FILESYSTEMS=1 where the location changes. I can squash this into that commit where it changes. Kind regards, Petr