On Mon, Apr 24, 2023 at 03:10:42PM +0100, David Howells wrote: > AFS doesn't support the "noacl" command line option. ACLs are mandatory > and interpreted by the server. > > Signed-off-by: David Howells <dhowells@xxxxxxxxxx> > cc: linux-afs@xxxxxxxxxxxxxxxxxxx > --- > tests/generic/696 | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/tests/generic/696 b/tests/generic/696 > index 178d78e1..55a2fd5a 100755 > --- a/tests/generic/696 > +++ b/tests/generic/696 > @@ -31,7 +31,10 @@ _scratch_mkfs >$seqres.full 2>&1 > $here/src/vfs/vfstest --test-setgid-create-umask \ > --device "$TEST_DEV" --mount "$TEST_DIR" --fstype "$FSTYP" > > -export MOUNT_OPTIONS="-o noacl $MOUNT_OPTIONS" > +if [ "$FSTYP" != afs ] > +then > + export MOUNT_OPTIONS="-o noacl $MOUNT_OPTIONS" > +fi Good to me, Reviewed-by: Zorro Lang <zlang@xxxxxxxxxx> > > # Also test S_ISGID stripping whether works correctly on underflying filesystem > # that supports noacl feature. >