From: Darrick J. Wong Date: Thu, 25 Aug 2016 23:29:24 +0000 (-0700) Subject: xfs: test getfsmap ioctl X-Git-Tag: v2022.05.01~2361 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c49136ef66932d2bb6fbc7949bb5ccbae2f32164;p=xfstests-dev.git xfs: test getfsmap ioctl Add some simple tests for the new getfsmap ioctl. Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/common/rc b/common/rc index 505e8239..13afc6a9 100644 --- a/common/rc +++ b/common/rc @@ -2048,6 +2048,12 @@ _require_xfs_io_command() echo $testio | egrep -q "invalid option|Is a directory" && \ _notrun "xfs_io $command support is missing" ;; + "fsmap" ) + testio=`$XFS_IO_PROG -T -F -c "fsmap" \ + $TEST_DIR 2>&1` + echo $testio | egrep -q "Inappropriate ioctl" && \ + _notrun "xfs_io $command support is missing" + ;; *) testio=`$XFS_IO_PROG -c "$command help" 2>&1` esac diff --git a/tests/xfs/271 b/tests/xfs/271 new file mode 100755 index 00000000..156cfae6 --- /dev/null +++ b/tests/xfs/271 @@ -0,0 +1,82 @@ +#! /bin/bash +# FS QA Test No. 271 +# +# Check that getfsmap reports the AG metadata we're expecting. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/testout +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_xfs_scratch_rmapbt +_require_xfs_io_command "fsmap" + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +agcount=$(xfs_info $SCRATCH_MNT | grep agcount= | sed -e 's/^.*agcount=\([0-9]*\),.*$/\1/g') + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT > $TEST_DIR/fsmap +cat $TEST_DIR/fsmap >> $seqres.full + +echo "Check AG header" | tee -a $seqres.full +grep 'static fs metadata[[:space:]]*[0-9]*[[:space:]]*(0\.\.' $TEST_DIR/fsmap | tee -a $seqres.full > $TEST_DIR/testout +_within_tolerance "AG header count" $(wc -l < $TEST_DIR/testout) $agcount 0 -v + +echo "Check freesp/rmap btrees" | tee -a $seqres.full +grep 'per-AG metadata[[:space:]]*[0-9]*[[:space:]]*([0-9]*\.\.' $TEST_DIR/fsmap | tee -a $seqres.full > $TEST_DIR/testout +_within_tolerance "freesp extent count" $(wc -l < $TEST_DIR/testout) $((agcount * 3)) 0 999999 -v + +echo "Check inode btrees" | tee -a $seqres.full +grep 'inode btree[[:space:]]*[0-9]*[[:space:]]*([0-9]*\.\.' $TEST_DIR/fsmap | tee -a $seqres.full > $TEST_DIR/testout +_within_tolerance "inode btree extent count" $(wc -l < $TEST_DIR/testout) $agcount 0 -v + +echo "Check inodes" | tee -a $seqres.full +grep 'inodes[[:space:]]*[0-9]*[[:space:]]*([0-9]*\.\.' $TEST_DIR/fsmap | tee -a $seqres.full > $TEST_DIR/testout +_within_tolerance "inode extent count" $(wc -l < $TEST_DIR/testout) 1 0 999999 -v + +echo "Check journal" | tee -a $seqres.full +grep 'journalling log' $TEST_DIR/fsmap | tee -a $seqres.full > $TEST_DIR/testout +_within_tolerance "journal extent count" $(wc -l < $TEST_DIR/testout) 1 0 -v + +# success, all done +status=0 +exit diff --git a/tests/xfs/271.out b/tests/xfs/271.out new file mode 100644 index 00000000..1732805d --- /dev/null +++ b/tests/xfs/271.out @@ -0,0 +1,13 @@ +QA output created by 271 +Format and mount +Get fsmap +Check AG header +AG header count is in range +Check freesp/rmap btrees +freesp extent count is in range +Check inode btrees +inode btree extent count is in range +Check inodes +inode extent count is in range +Check journal +journal extent count is in range diff --git a/tests/xfs/272 b/tests/xfs/272 new file mode 100755 index 00000000..f8e9eb3f --- /dev/null +++ b/tests/xfs/272 @@ -0,0 +1,84 @@ +#! /bin/bash +# FS QA Test No. 272 +# +# Check that getfsmap agrees with getbmap. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/bmap +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_xfs_scratch_rmapbt +_require_xfs_io_command "fsmap" +_require_test_program "punch-alternating" + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +_pwrite_byte 0x80 0 737373 $SCRATCH_MNT/urk >> $seqres.full +sync +./src/punch-alternating $SCRATCH_MNT/urk >> $seqres.full +ino=$(stat -c '%i' $SCRATCH_MNT/urk) + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' ' ' > $TEST_DIR/fsmap + +echo "Get bmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/urk >> $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/urk | grep '^[[:space:]]*[0-9]*:' | grep -v 'hole' | tr '[]()' ' ' > $TEST_DIR/bmap + +echo "Check bmap and fsmap" | tee -a $seqres.full +cat $TEST_DIR/bmap | while read ext offrange colon blockrange ag agrange total crap; do + qstr="^[[:space:]]*[0-9]*:[[:space:]]*[0-9]*:[0-9]*[[:space:]]*${blockrange} :[[:space:]]*${ino}[[:space:]]*${offrange}[[:space:]]*${ag}[[:space:]]*${agrange}[[:space:]]*${total}$" + echo "${qstr}" >> $seqres.full + grep "${qstr}" $TEST_DIR/fsmap >> $seqres.full + found=$(grep -c "${qstr}" $TEST_DIR/fsmap) + test $found -eq 1 || echo "Unexpected output for offset ${offrange}." +done + +echo "Check device field of FS metadata and regular file" +data_dev=$(grep 'static fs metadata' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +rt_dev=$(grep "${ino}[[:space:]]*[0-9]*\.\.[0-9]*" $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +test "${data_dev}" = "${rt_dev}" || echo "data ${data_dev} realtime ${rt_dev}?" + +# success, all done +status=0 +exit diff --git a/tests/xfs/272.out b/tests/xfs/272.out new file mode 100644 index 00000000..9c05cbca --- /dev/null +++ b/tests/xfs/272.out @@ -0,0 +1,6 @@ +QA output created by 272 +Format and mount +Get fsmap +Get bmap +Check bmap and fsmap +Check device field of FS metadata and regular file diff --git a/tests/xfs/273 b/tests/xfs/273 new file mode 100755 index 00000000..f4b57bbe --- /dev/null +++ b/tests/xfs/273 @@ -0,0 +1,65 @@ +#! /bin/bash +# FS QA Test No. 273 +# +# Populate filesystem, check that fsmap -n10000 matches fsmap -n1. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/a $TEST_DIR/b +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/populate + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_scratch +_require_xfs_io_command "fsmap" + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_populate >> $seqres.full + +echo "Compare fsmap" | tee -a $seqres.full +_scratch_mount +$XFS_IO_PROG -c 'fsmap -v -n 65536' $SCRATCH_MNT | grep -v 'EXT:' > $TEST_DIR/a +$XFS_IO_PROG -c 'fsmap -v -n 1' $SCRATCH_MNT | grep -v 'EXT:' > $TEST_DIR/b +cat $TEST_DIR/a $TEST_DIR/b >> $seqres.full + +diff -uw $TEST_DIR/a $TEST_DIR/b + +# success, all done +status=0 +exit diff --git a/tests/xfs/273.out b/tests/xfs/273.out new file mode 100644 index 00000000..1aef74c8 --- /dev/null +++ b/tests/xfs/273.out @@ -0,0 +1,3 @@ +QA output created by 273 +Format and mount +Compare fsmap diff --git a/tests/xfs/274 b/tests/xfs/274 new file mode 100755 index 00000000..209c0670 --- /dev/null +++ b/tests/xfs/274 @@ -0,0 +1,95 @@ +#! /bin/bash +# FS QA Test No. 274 +# +# Check that getfsmap agrees with getbmap for reflinked files. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/bmap +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_scratch_reflink +_require_xfs_scratch_rmapbt +_require_xfs_io_command "fsmap" +_require_test_program "punch-alternating" + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +_pwrite_byte 0x80 0 737373 $SCRATCH_MNT/f1 >> $seqres.full +sync +./src/punch-alternating $SCRATCH_MNT/f1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/f1 $SCRATCH_MNT/f2 +ino=$(stat -c '%i' $SCRATCH_MNT/f1) + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' ' ' > $TEST_DIR/fsmap + +echo "Get f1 bmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/f1 >> $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/f1 | grep '^[[:space:]]*[0-9]*:' | grep -v 'hole' | tr '[]()' ' ' > $TEST_DIR/bmap + +echo "Check f1 bmap and fsmap" | tee -a $seqres.full +cat $TEST_DIR/bmap | while read ext offrange colon blockrange ag agrange total crap; do + qstr="^[[:space:]]*[0-9]*:[[:space:]]*[0-9]*:[0-9]*[[:space:]]*${blockrange} :[[:space:]]*${ino}[[:space:]]*${offrange}[[:space:]]*${ag}[[:space:]]*${agrange}[[:space:]]*${total} 1000000$" + echo "${qstr}" >> $seqres.full + grep "${qstr}" $TEST_DIR/fsmap >> $seqres.full + found=$(grep -c "${qstr}" $TEST_DIR/fsmap) + test $found -eq 1 || echo "Unexpected output for offset ${offrange}." +done + +echo "Get f2 bmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/f2 >> $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/f2 | grep '^[[:space:]]*[0-9]*:' | grep -v 'hole' | tr '[]()' ' ' > $TEST_DIR/bmap + +echo "Check f2 bmap and fsmap" | tee -a $seqres.full +cat $TEST_DIR/bmap | while read ext offrange colon blockrange ag agrange total crap; do + qstr="^[[:space:]]*[0-9]*:[[:space:]]*[0-9]*:[0-9]*[[:space:]]*${blockrange} :[[:space:]]*${ino}[[:space:]]*${offrange}[[:space:]]*${ag}[[:space:]]*${agrange}[[:space:]]*${total} 1000000$" + echo "${qstr}" >> $seqres.full + grep "${qstr}" $TEST_DIR/fsmap >> $seqres.full + found=$(grep -c "${qstr}" $TEST_DIR/fsmap) + test $found -eq 1 || echo "Unexpected output for offset ${offrange}." +done + +# success, all done +status=0 +exit diff --git a/tests/xfs/274.out b/tests/xfs/274.out new file mode 100644 index 00000000..1415a689 --- /dev/null +++ b/tests/xfs/274.out @@ -0,0 +1,7 @@ +QA output created by 274 +Format and mount +Get fsmap +Get f1 bmap +Check f1 bmap and fsmap +Get f2 bmap +Check f2 bmap and fsmap diff --git a/tests/xfs/275 b/tests/xfs/275 new file mode 100755 index 00000000..cc6d353c --- /dev/null +++ b/tests/xfs/275 @@ -0,0 +1,68 @@ +#! /bin/bash +# FS QA Test No. 275 +# +# Check that getfsmap reports external log devices +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/testout +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_scratch +_require_xfs_io_command "fsmap" +if [ "$USE_EXTERNAL" != "yes" ] || [ -z "$SCRATCH_LOGDEV" ]; then + _notrun "Need external log device" +fi + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' ' ' > $TEST_DIR/fsmap + +echo "Check device field of FS metadata and journalling log" +data_dev=$(grep 'static fs metadata' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +journal_dev=$(grep 'journalling log' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +test "${data_dev}" != "${journal_dev}" || echo "data ${data_dev} journal ${journal_dev}?" + +# success, all done +status=0 +exit diff --git a/tests/xfs/275.out b/tests/xfs/275.out new file mode 100644 index 00000000..9557887d --- /dev/null +++ b/tests/xfs/275.out @@ -0,0 +1,4 @@ +QA output created by 275 +Format and mount +Get fsmap +Check device field of FS metadata and journalling log diff --git a/tests/xfs/276 b/tests/xfs/276 new file mode 100755 index 00000000..cea91c9e --- /dev/null +++ b/tests/xfs/276 @@ -0,0 +1,85 @@ +#! /bin/bash +# FS QA Test No. 276 +# +# Check that getfsmap agrees with getbmap when realtime files are present. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/bmap +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_realtime +_require_xfs_scratch_rmapbt +_require_xfs_io_command "fsmap" +_require_test_program "punch-alternating" + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +$XFS_IO_PROG -f -R -c 'pwrite -S 0x80 0 737373' $SCRATCH_MNT/urk >> $seqres.full +sync +./src/punch-alternating $SCRATCH_MNT/urk >> $seqres.full +ino=$(stat -c '%i' $SCRATCH_MNT/urk) + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' ' ' > $TEST_DIR/fsmap + +echo "Get bmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/urk >> $seqres.full +$XFS_IO_PROG -c 'bmap -v' $SCRATCH_MNT/urk | grep '^[[:space:]]*[0-9]*:' | grep -v 'hole' | tr '[]()' ' ' > $TEST_DIR/bmap + +echo "Check bmap and fsmap" | tee -a $seqres.full +cat $TEST_DIR/bmap | while read ext offrange colon blockrange ag agrange total crap; do + qstr="^[[:space:]]*[0-9]*:[[:space:]]*[0-9]*:[0-9]*[[:space:]]*${blockrange} :[[:space:]]*${ino}[[:space:]]*${offrange}[[:space:]]*${ag}[[:space:]]*${agrange}[[:space:]]*${total}$" + echo "${qstr}" >> $seqres.full + grep "${qstr}" $TEST_DIR/fsmap >> $seqres.full + found=$(grep -c "${qstr}" $TEST_DIR/fsmap) + test $found -eq 1 || echo "Unexpected output for offset ${offrange}." +done + +echo "Check device field of FS metadata and realtime file" +data_dev=$(grep 'static fs metadata' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +rt_dev=$(grep "${ino}[[:space:]]*[0-9]*\.\.[0-9]*" $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +test "${data_dev}" != "${rt_dev}" || echo "data ${data_dev} realtime ${rt_dev}?" + +# success, all done +status=0 +exit diff --git a/tests/xfs/276.out b/tests/xfs/276.out new file mode 100644 index 00000000..41d694dc --- /dev/null +++ b/tests/xfs/276.out @@ -0,0 +1,6 @@ +QA output created by 276 +Format and mount +Get fsmap +Get bmap +Check bmap and fsmap +Check device field of FS metadata and realtime file diff --git a/tests/xfs/277 b/tests/xfs/277 new file mode 100755 index 00000000..cb4f1ee7 --- /dev/null +++ b/tests/xfs/277 @@ -0,0 +1,68 @@ +#! /bin/bash +# FS QA Test No. 277 +# +# Check that getfsmap reports internal log devices +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +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 + +_cleanup() +{ + cd / + rm -rf "$tmp".* $TEST_DIR/fsmap $TEST_DIR/testout +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_xfs_scratch_rmapbt +_require_xfs_io_command "fsmap" +if [ "$USE_EXTERNAL" = "yes" ] && [ -n "$SCRATCH_LOGDEV" ]; then + _notrun "Cannot have external log device" +fi + +rm -f "$seqres.full" + +echo "Format and mount" +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount + +echo "Get fsmap" | tee -a $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT >> $seqres.full +$XFS_IO_PROG -c 'fsmap -v' $SCRATCH_MNT | tr '[]()' ' ' > $TEST_DIR/fsmap + +echo "Check device field of FS metadata and journalling log" +data_dev=$(grep 'static fs metadata' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +journal_dev=$(grep 'journalling log' $TEST_DIR/fsmap | head -n 1 | awk '{print $2}') +test "${data_dev}" = "${journal_dev}" || echo "data ${data_dev} journal ${journal_dev}?" + +# success, all done +status=0 +exit diff --git a/tests/xfs/277.out b/tests/xfs/277.out new file mode 100644 index 00000000..ff57685f --- /dev/null +++ b/tests/xfs/277.out @@ -0,0 +1,4 @@ +QA output created by 277 +Format and mount +Get fsmap +Check device field of FS metadata and journalling log diff --git a/tests/xfs/group b/tests/xfs/group index 5348f467..c037076c 100644 --- a/tests/xfs/group +++ b/tests/xfs/group @@ -268,6 +268,13 @@ 268 dump ioctl tape 269 auto quick ioctl 270 auto quick mount +271 auto quick rmap fsmap +272 auto quick rmap fsmap +273 auto rmap fsmap +274 auto quick rmap fsmap +275 auto quick rmap fsmap +276 auto quick rmap fsmap +277 auto quick rmap fsmap 278 repair auto 279 auto mkfs 281 dump ioctl auto quick