xfs/004: account for XFS reservations changes in 4.10-rc
[xfstests-dev.git] / tests / xfs / 004
1 #! /bin/bash
2 # FS QA Test No. 004
3 #
4 # exercise xfs_db bug #789674 and other freesp functionality
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=0
32
33 _cleanup()
34 {
35         _scratch_unmount
36         rm -f $tmp.*
37         exit $status
38 }
39 trap "_cleanup" 0 1 2 3 15
40
41 _populate_scratch()
42 {
43         echo "=== mkfs output ===" >>$seqres.full
44         _scratch_mkfs_xfs | tee -a $seqres.full | _filter_mkfs 2>$tmp.mkfs
45         . $tmp.mkfs
46         _scratch_mount
47         dd if=/dev/zero of=$SCRATCH_MNT/foo count=200 bs=4096 >/dev/null 2>&1 &
48         dd if=/dev/zero of=$SCRATCH_MNT/goo count=400 bs=4096 >/dev/null 2>&1 &
49         dd if=/dev/zero of=$SCRATCH_MNT/moo count=800 bs=4096 >/dev/null 2>&1 &
50         wait
51         _scratch_unmount                        # flush everything
52         _scratch_mount                          # and then remount
53 }
54
55 # get standard environment, filters and checks
56 . ./common/rc
57 . ./common/filter
58
59 # real QA test starts here
60 _supported_fs xfs
61 _supported_os IRIX Linux
62
63 _require_scratch
64 _require_no_large_scratch_dev
65
66 rm -f $seqres.full
67
68 _populate_scratch
69
70 [ "$HOSTOS" = "Linux" ] && DF_PROG="$DF_PROG -P --block-size=512"
71
72 eval `$DF_PROG $SCRATCH_MNT 2>&1 \
73         | tail -1 | $AWK_PROG '{ printf "blocks=%u used=%u avail=%u\n", $3, $4, $5 }'`
74 echo "df gave: blocks=$blocks used=$used avail=$avail" >>$seqres.full
75 echo "blocksize from mkfs is '$dbsize'" >>$seqres.full
76
77 _scratch_xfs_db -r -c "freesp -s"  >$tmp.xfs_db
78 echo "xfs_db for $SCRATCH_DEV" >>$seqres.full
79 cat $tmp.xfs_db >>$seqres.full
80
81 eval `$XFS_IO_PROG -x -c resblks $SCRATCH_MNT 2>&1 \
82         | $AWK_PROG '/available/ { printf "resblks=%u\n", $5 }'`
83 echo "resblks gave: resblks=$resblks" >>$seqres.full
84
85 # check the 'blocks' field from freesp command is OK
86 #  - starting with Linux 4.10-rc the bmbt split reservation moved to be per-AG
87 perl -ne '
88         BEGIN   { $avail ='$avail' * 512 + ('$resblks' * '$dbsize');
89                   $answer="(no xfs_db free blocks line?)" }
90         /free blocks (\d+)$/    || next;
91         $freesp = $1 * '$dbsize';
92         if ($freesp == $avail + ('$agcount') * '$dbsize' * 8) {
93                 $answer = "yes";
94         } elsif ($freesp == $avail + (('$agcount' + 1) * '$dbsize' * 4)) {
95                 $answer = "yes";
96         } else {
97                 $answer = "no ($freesp != $avail)";
98         }
99         END     { print "$answer\n" }
100         ' <$tmp.xfs_db >$tmp.ans
101 ans="`cat $tmp.ans`"
102 echo "Checking blocks column same as df: $ans"
103 if [ "$ans" != yes ]
104 then
105         echo "Error: $SCRATCH_DEV: freesp mismatch: $ans"
106         echo "xfs_db output ..."
107         cat $tmp.xfs_db
108         status=1
109 fi
110
111 # check the 'pct' field from freesp command is good
112 perl -ne '
113             BEGIN       { $percent = 0; }
114             /free/      && next;        # skip over free extent size number
115             if (/\s+(\d+\.\d+)$/) {
116                 $percent += $1;
117             }
118             END { $percent += 0.5; print int($percent), "\n" }  # round up
119 ' <$tmp.xfs_db >$tmp.ans
120 ans="`cat $tmp.ans`"
121 echo "Checking percent column yields 100: $ans"
122 if [ "$ans" != 100 ]
123 then
124         echo "Error: $SCRATCH_DEV: pct mismatch: $ans (expected 100)"
125         echo "xfs_db output ..."
126         cat $tmp.xfs_db
127         status=1
128 fi
129
130 exit