mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfs: test getfsmap ioctl
Add some simple tests for the new getfsmap ioctl. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Eryu Guan <eguan@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
committed by
Eryu Guan
parent
0cc271642a
commit
c49136ef66
@@ -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
|
||||
|
||||
Executable
+82
@@ -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
|
||||
@@ -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
|
||||
Executable
+84
@@ -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
|
||||
@@ -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
|
||||
Executable
+65
@@ -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
|
||||
@@ -0,0 +1,3 @@
|
||||
QA output created by 273
|
||||
Format and mount
|
||||
Compare fsmap
|
||||
Executable
+95
@@ -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
|
||||
@@ -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
|
||||
Executable
+68
@@ -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
|
||||
@@ -0,0 +1,4 @@
|
||||
QA output created by 275
|
||||
Format and mount
|
||||
Get fsmap
|
||||
Check device field of FS metadata and journalling log
|
||||
Executable
+85
@@ -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
|
||||
@@ -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
|
||||
Executable
+68
@@ -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
|
||||
@@ -0,0 +1,4 @@
|
||||
QA output created by 277
|
||||
Format and mount
|
||||
Get fsmap
|
||||
Check device field of FS metadata and journalling log
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user