xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 121
1 #! /bin/bash
2 # FS QA Test No. 121
3 #
4 # To test log replay for the unlinked list.
5 # So we create unlinked and still referenced inodes
6 # and make sure that no clearing of the unlinked AGI buckets
7 # are happening.
8 # See pv#953263.
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
12 #
13 # This program is free software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License as
15 # published by the Free Software Foundation.
16 #
17 # This program is distributed in the hope that it would be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write the Free Software Foundation,
24 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
25 #
26 #-----------------------------------------------------------------------
27 #
28
29 seq=`basename $0`
30 seqres=$RESULT_DIR/$seq
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
37
38 # get standard environment, filters and checks
39 . ./common/rc
40 . ./common/filter
41 . ./common/log
42
43 # real QA test starts here
44 _supported_fs xfs
45 _supported_os IRIX Linux
46
47 rm -f $seqres.full
48 rm -f $tmp.log
49
50 _require_scratch
51
52 echo "mkfs"
53 _scratch_mkfs_xfs >>$seqres.full 2>&1 \
54     || _fail "mkfs scratch failed"
55
56 echo "mount"
57 _scratch_mount >>$seqres.full 2>&1 \
58     || _fail "mount failed: $MOUNT_OPTIONS"
59
60 # num_files must be greater than 64 (XFS_AGI_UNLINKED_BUCKETS)
61 # so that there will be at least one linked list from one of
62 # the 64 buckets, so that we can decode a di_next_unlinked field
63 num_files=200
64 delay=5
65 echo "open and unlink $num_files files"
66 src/multi_open_unlink -f $SCRATCH_MNT/test_file -n $num_files -s $delay &
67
68 # time to create and unlink all the files
69 sleep 3
70
71 echo "godown"
72 src/godown -v -f $SCRATCH_MNT >> $seqres.full
73
74 # time for multi_open_unlink to exit out after its delay
75 # so we have no references and can unmount
76 wait 2>/dev/null
77
78 echo "unmount"
79 umount $SCRATCH_MNT
80
81 echo "logprint after going down..."
82 _print_logstate
83
84 echo "mount with replay"
85 _scratch_mount $mnt >>$seqres.full 2>&1 \
86     || _fail "mount failed: $mnt $MOUNT_OPTIONS"
87
88 echo "godown"
89 src/godown -v -f $SCRATCH_MNT >> $seqres.full
90
91 echo "unmount"
92 umount $SCRATCH_MNT
93
94 echo "logprint after going down..."
95 _print_logstate
96
97 echo "logprint to check for CLEAR_AGI_BUCKET..."
98 if _scratch_xfs_logprint -t | tee -a $seqres.full | grep CLEAR; then
99         echo 'CLEAR_AGI_BUCKET transactions found!!'
100         echo 'Are you running with an old xfs kernel - where the bug still exists?'
101 else
102         echo 'No CLEAR_AGI_BUCKET found in transactions - great - test passed :)'
103 fi
104
105 # clean up dirty log with log recovery on mount
106 _scratch_mount >> $seqres.full 2>&1 \
107     || _fail "mount failed"
108
109 # should now be peaches
110 _check_scratch_fs
111
112 # success, all done
113 status=0
114 exit