* [PATCH] xfs/187: fix new sb_features2 ftype stop case running
@ 2016-08-30 7:35 Zorro Lang
2016-08-31 0:00 ` Dave Chinner
0 siblings, 1 reply; 2+ messages in thread
From: Zorro Lang @ 2016-08-30 7:35 UTC (permalink / raw)
To: fstests; +Cc: Zorro Lang, xfs
This case is too old, at that time there's no "ftype" feature for
XFS. Due to this case need to clear features2 bits when mkfs.xfs,
so ftype bit stop case running for long time.
We care 6 features2 bits in this case:
"ATTR2, LAZYSBCOUNT, PROJID32BIT, CRC, FTYPE, FINOBT"
ATTR2 and LAZYSBCOUNT bits will be tested in case. FINBOT will be
disabled if CRC=0. So this patch only check and disable PROJID32BIT,
CRC and FTYPE features when mkfs.xfs.
Signed-off-by: Zorro Lang <zlang@redhat.com>
---
Hi,
I think we shouldn't skip this case if user doesn't specify suitable
MKFS_OPTIONS and MOUNT_OPTIONS. Because this case need complex options,
nearly no one will specify these all options for xfstests at same time.
Thanks,
Zorro
tests/xfs/187 | 51 ++++++++++++++++++++++++++++-----------------------
1 file changed, 28 insertions(+), 23 deletions(-)
diff --git a/tests/xfs/187 b/tests/xfs/187
index 836b924..5e7c677 100755
--- a/tests/xfs/187
+++ b/tests/xfs/187
@@ -31,7 +31,6 @@ seq=`basename $0`
seqres=$RESULT_DIR/$seq
echo "QA output created by $seq"
-here=`pwd`
tmp=/tmp/$$
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
@@ -58,24 +57,32 @@ _supported_os Linux
_require_scratch
_require_attrs
-_require_attr_v1
-_require_projid16bit
rm -f $seqres.full
-
+_scratch_mkfs >/dev/null 2>&1
# Reset the options so that we can control what is going on here
-export MKFS_OPTIONS=""
-export MOUNT_OPTIONS=""
-
-# lazysb, attr2 and other feature bits are held in features2 and will require
-# morebitsbit on So test with lazysb and without it to see if the morebitsbit is
-# okay etc. If the mkfs defaults change, these need to change as well.
-export MKFS_NO_LAZY="-m crc=0 -l lazy-count=0 -i projid32bit=0"
-export MKFS_LAZY="-m crc=0 -l lazy-count=1 -i projid32bit=0"
+MKFS_OPTIONS=""
+MOUNT_OPTIONS=""
+ver2=`$XFS_DB_PROG -c version $SCRATCH_DEV | sed -n -e "s/,/ /g" \
+ -e "s/.*MOREBITS\(.*\)/\1/p"`
+# clear features2 bits which we won't test
+for b in $ver2; do
+ case $b in
+ CRC)
+ MKFS_OPTIONS="$MKFS_OPTIONS -m crc=0"
+ ;;
+ PROJID32BIT)
+ MKFS_OPTIONS="$MKFS_OPTIONS -i projid32bit=0"
+ ;;
+ FTYPE)
+ MKFS_OPTIONS="$MKFS_OPTIONS -n ftype=0"
+ ;;
+ esac
+done
# Make sure that when we think we are testing with morebits off
# that we really are.
-_scratch_mkfs -i attr=1 $MKFS_NO_LAZY >/dev/null 2>&1
+_scratch_mkfs -i attr=1 -l lazy-count=0 >/dev/null 2>&1
$XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 >$tmp.db
if grep -i morebits $tmp.db
then
@@ -90,13 +97,13 @@ echo "*** 1. test attr2 mkfs and then noattr2 mount ***"
echo ""
echo "attr2 fs"
echo ""
-_scratch_mkfs -i attr=2 $MKFS_NO_LAZY >/dev/null 2>&1
+_scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
echo ""
echo "noattr2 fs"
echo ""
_scratch_mount -o noattr2
-$UMOUNT_PROG $SCRATCH_MNT
+_scratch_unmount
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
# adding an EA will ensure the ATTR1 flag is turned on
@@ -105,7 +112,7 @@ echo "*** 2. test attr2 mkfs and then noattr2 mount with 1 EA ***"
echo ""
echo "attr2 fs"
echo ""
-_scratch_mkfs -i attr=2 $MKFS_NO_LAZY >/dev/null 2>&1
+_scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
echo ""
echo "noattr2 fs"
@@ -115,8 +122,8 @@ cd $SCRATCH_MNT
touch testfile
$SETFATTR_PROG -n user.test -v 0xbabe testfile
$GETFATTR_PROG testfile
-cd $here
-$UMOUNT_PROG $SCRATCH_MNT
+cd - >/dev/null
+_scratch_unmount
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
echo ""
@@ -125,16 +132,14 @@ echo ""
echo ""
echo "attr2 fs"
echo ""
-_scratch_mkfs -i attr=2 $MKFS_LAZY >/dev/null 2>&1
+_scratch_mkfs -i attr=2 -l lazy-count=1 >/dev/null 2>&1
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
echo ""
echo "noattr2 fs"
echo ""
_scratch_mount -o noattr2
-cd $SCRATCH_MNT
-touch testfile
-cd $here
-$UMOUNT_PROG $SCRATCH_MNT
+touch $SCRATCH_MNT/testfile
+_scratch_unmount
$XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
# success, all done
--
2.7.4
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] xfs/187: fix new sb_features2 ftype stop case running
2016-08-30 7:35 [PATCH] xfs/187: fix new sb_features2 ftype stop case running Zorro Lang
@ 2016-08-31 0:00 ` Dave Chinner
0 siblings, 0 replies; 2+ messages in thread
From: Dave Chinner @ 2016-08-31 0:00 UTC (permalink / raw)
To: Zorro Lang; +Cc: fstests, xfs
On Tue, Aug 30, 2016 at 03:35:32PM +0800, Zorro Lang wrote:
> This case is too old, at that time there's no "ftype" feature for
> XFS. Due to this case need to clear features2 bits when mkfs.xfs,
> so ftype bit stop case running for long time.
>
> We care 6 features2 bits in this case:
>
> "ATTR2, LAZYSBCOUNT, PROJID32BIT, CRC, FTYPE, FINOBT"
>
> ATTR2 and LAZYSBCOUNT bits will be tested in case. FINBOT will be
> disabled if CRC=0. So this patch only check and disable PROJID32BIT,
> CRC and FTYPE features when mkfs.xfs.
>
> Signed-off-by: Zorro Lang <zlang@redhat.com>
> ---
>
> Hi,
>
> I think we shouldn't skip this case if user doesn't specify suitable
> MKFS_OPTIONS and MOUNT_OPTIONS. Because this case need complex options,
> nearly no one will specify these all options for xfstests at same time.
>
> Thanks,
> Zorro
>
> tests/xfs/187 | 51 ++++++++++++++++++++++++++++-----------------------
> 1 file changed, 28 insertions(+), 23 deletions(-)
>
> diff --git a/tests/xfs/187 b/tests/xfs/187
> index 836b924..5e7c677 100755
> --- a/tests/xfs/187
> +++ b/tests/xfs/187
> @@ -31,7 +31,6 @@ seq=`basename $0`
> seqres=$RESULT_DIR/$seq
> echo "QA output created by $seq"
>
> -here=`pwd`
> tmp=/tmp/$$
> status=1 # failure is the default!
> trap "_cleanup; exit \$status" 0 1 2 3 15
> @@ -58,24 +57,32 @@ _supported_os Linux
>
> _require_scratch
> _require_attrs
> -_require_attr_v1
> -_require_projid16bit
>
> rm -f $seqres.full
> -
> +_scratch_mkfs >/dev/null 2>&1
> # Reset the options so that we can control what is going on here
> -export MKFS_OPTIONS=""
> -export MOUNT_OPTIONS=""
> -
> -# lazysb, attr2 and other feature bits are held in features2 and will require
> -# morebitsbit on So test with lazysb and without it to see if the morebitsbit is
> -# okay etc. If the mkfs defaults change, these need to change as well.
> -export MKFS_NO_LAZY="-m crc=0 -l lazy-count=0 -i projid32bit=0"
> -export MKFS_LAZY="-m crc=0 -l lazy-count=1 -i projid32bit=0"
> +MKFS_OPTIONS=""
> +MOUNT_OPTIONS=""
> +ver2=`$XFS_DB_PROG -c version $SCRATCH_DEV | sed -n -e "s/,/ /g" \
> + -e "s/.*MOREBITS\(.*\)/\1/p"`
> +# clear features2 bits which we won't test
> +for b in $ver2; do
> + case $b in
> + CRC)
> + MKFS_OPTIONS="$MKFS_OPTIONS -m crc=0"
> + ;;
> + PROJID32BIT)
> + MKFS_OPTIONS="$MKFS_OPTIONS -i projid32bit=0"
> + ;;
> + FTYPE)
> + MKFS_OPTIONS="$MKFS_OPTIONS -n ftype=0"
> + ;;
> + esac
> +done
We're doing stuff like this in way too many places to keep old tests
working with new xfsprogs as the defaults change and new options are
added. This is not maintainable in the long run.
I think we need to start marking test as requiring "old" filesystem
formats, and we configure the mkfs options required to create such a
filesystem in one place.
i.e. add a rule:
_require_old_xfs_format()
{
# calculate necessary additional options to ensure
# 16 bit project id, no CRCs, and no ftype.
BASIC_MKFS_OPTIONS=.....
# add "old" option to default mkfs option set
export MKFS_OPTION=S"$MKFS_OPTIONS $BASIC_MKFS_OPTIONS"
}
And now any specific test that relies on a format not having CRCs,
ftype, etc, can simply _require_old_xfs_format(), and so we can
get rid of all the per-test magic we have to futz mkfs options into
the "old" format the test requires.
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-08-31 0:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 7:35 [PATCH] xfs/187: fix new sb_features2 ftype stop case running Zorro Lang
2016-08-31 0:00 ` Dave Chinner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).