xfstests: kill useless test owner fields
[xfstests-dev.git] / 181
1 #! /bin/bash
2 # FS QA Test No. 181
3 #
4 # Like 121 only creating large EAs
5 # As part of the iunlink processing in recovery it will call VN_RELE
6 # which will inactivate the inodes and if they have EAs (which they
7 # will here) also call xfs_inactive_attrs.
8 # We want to test out this xfs_inactive_attrs code being called in recovery.
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2007 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 echo "QA output created by $seq"
31
32 _cleanup()
33 {
34     rm -f $tmp.*
35     [ -n "$pid" ] && kill $pid
36 }
37
38 pid=""
39 here=`pwd`
40 tmp=/tmp/$$
41 status=1        # failure is the default!
42 trap "_cleanup; exit \$status" 0 1 2 3 15
43
44 # get standard environment, filters and checks
45 . ./common.rc
46 . ./common.filter
47 . ./common.log
48
49 # real QA test starts here
50 _supported_fs xfs
51 _supported_os IRIX Linux
52
53 rm -f $seq.full
54 rm -f $tmp.log
55
56 _require_scratch
57
58 echo "mkfs"
59 _scratch_mkfs_xfs >>$seq.full 2>&1 \
60     || _fail "mkfs scratch failed"
61
62 echo "mount"
63 _scratch_mount >>$seq.full 2>&1 \
64     || _fail "mount failed: $MOUNT_OPTIONS"
65
66 # num_files must be greater than 64 (XFS_AGI_UNLINKED_BUCKETS)
67 # so that there will be at least one linked list from one of
68 # the 64 buckets, so that we can decode a di_next_unlinked field
69 num_files=200
70 num_eas=1
71 ea_val_size=`expr 32 \* 1024`
72
73 # sleep for ages and we will kill this pid when we are ready
74 delay=100
75
76 echo "open and unlink $num_files files with EAs"
77 src/multi_open_unlink -f $SCRATCH_MNT/test_file -n $num_files -s $delay -e $num_eas -v $ea_val_size &
78 pid=$!
79
80 # time to create and unlink all the files
81 sleep 10
82
83 echo "godown"
84 src/godown -v -f $SCRATCH_MNT >> $seq.full
85
86 # kill the multi_open_unlink
87 kill $pid 2>/dev/null
88 wait $pid 2>/dev/null
89 pid=""
90
91 echo "unmount"
92 umount $SCRATCH_MNT
93
94 echo "logprint after going down..."
95 _print_logstate
96
97 echo "mount with replay"
98 _scratch_mount $mnt >>$seq.full 2>&1 \
99     || _fail "mount failed: $mnt $MOUNT_OPTIONS"
100
101 echo "godown"
102 src/godown -v -f $SCRATCH_MNT >> $seq.full
103
104 echo "unmount"
105 umount $SCRATCH_MNT
106
107 echo "logprint after going down..."
108 _print_logstate
109
110 echo "logprint to check for CLEAR_AGI_BUCKET..."
111 if _scratch_xfs_logprint -t | tee -a $seq.full | grep CLEAR; then
112         echo 'CLEAR_AGI_BUCKET transactions found!!'
113         echo 'Are you running with an old xfs kernel - where the bug still exists?'
114 else
115         echo 'No CLEAR_AGI_BUCKET found in transactions - great - test passed :)'
116 fi
117
118 # clean up dirty log with log recovery on mount
119 _scratch_mount >> $seq.full 2>&1 \
120     || _fail "mount failed"
121
122 # should now be peaches
123 _check_scratch_fs
124
125 # success, all done
126 status=0
127 exit