From: Joanne Chang Date: Wed, 13 May 2026 03:20:09 +0000 (+0000) Subject: f2fs/021: Fix mount syntax for disabling jquota X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c5ddd1789ae14e1acd512f6cc2af61778ac53aa6;p=xfstests-dev.git f2fs/021: Fix mount syntax for disabling jquota F2FS has removed the trailing "=" in the mount options for disabling user journaled quotas. Update f2fs/021 to try the new syntax first and fall back to the legacy syntax if the initial mount attempt fails. Signed-off-by: Joanne Chang Reviewed-by: Chao Yu Signed-off-by: Zorro Lang --- diff --git a/tests/f2fs/021 b/tests/f2fs/021 index 0cacb138..70b10fa8 100755 --- a/tests/f2fs/021 +++ b/tests/f2fs/021 @@ -21,7 +21,9 @@ quotacheck -uc $SCRATCH_MNT _scratch_unmount _scratch_mount "-o usrjquota=aquota.user,jqfmt=vfsold" -_scratch_mount "-o remount,usrjquota=,jqfmt=vfsold" +if ! _try_scratch_mount "-o remount,usrjquota,jqfmt=vfsold" >> $seqres.full 2>&1; then + _scratch_mount "-o remount,usrjquota=,jqfmt=vfsold" +fi _scratch_unmount echo "Silence is golden"