xfstests: 226: have xfs_io use bigger buffers
[xfstests-dev.git] / 068
1 #! /bin/bash
2 # FSQA Test No. 068
3 #
4 # Test case to reproduce xfs_freeze hang under filsystem load.
5 # The fail case for this test is a hang on an xfs_freeze.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 # creator
26 owner=ajones@sgi.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=0        # success is the default!
34
35 ITERATIONS=10
36
37 _cleanup()
38 {
39     cd /
40     _cleanup_testdir
41
42     trap 0 1 2 3 15
43     exit $status
44 }
45
46 trap "_cleanup" 0 1 2 3 15
47
48
49 # get standard environment, filters and checks
50 . ./common.rc
51 . ./common.filter
52
53 # real QA test starts here
54 _supported_fs xfs
55 _supported_os Linux IRIX
56
57 _require_scratch
58
59 echo "*** init FS"
60
61 rm -f $seq.full
62 umount $SCRATCH_DEV >/dev/null 2>&1
63 echo "*** MKFS ***"                         >>$seq.full
64 echo ""                                     >>$seq.full
65 _scratch_mkfs_xfs                           >>$seq.full 2>&1 \
66     || _fail "mkfs failed"
67 _scratch_mount                              >>$seq.full 2>&1 \
68     || _fail "mount failed"
69
70 touch $tmp.running
71
72
73 # start fsstress loop in a background block
74 {
75     STRESS_DIR="$SCRATCH_MNT/fsstress_test_dir"
76     mkdir "$STRESS_DIR"
77
78     procs=2
79     nops=200
80     while [ -f "$tmp.running" ]
81       do
82       # -w ensures that the only ops are ones which cause write I/O
83       $FSSTRESS_PROG -d $STRESS_DIR -w -p $procs -n $nops $FSSTRESS_AVOID \
84           > /dev/null 2>&1
85     done
86
87     rm -r $STRESS_DIR/*
88     rmdir $STRESS_DIR
89 } &
90
91 i=0
92 let ITERATIONS=$ITERATIONS-1
93
94 echo | tee -a $seq.full
95 while [ $i -le $ITERATIONS ]
96 do
97         echo "*** iteration: $i" | tee -a $seq.full
98         echo "*** freezing \$SCRATCH_MNT" | tee -a $seq.full
99         xfs_freeze -f "$SCRATCH_MNT" | tee -a $seq.full
100         [ $? != 0 ] && echo xfs_freeze -f "$SCRATCH_MNT" failed | \
101             tee -a $seq.full
102         sleep 2
103
104         echo "*** thawing  \$SCRATCH_MNT" | tee -a $seq.full
105         xfs_freeze -u "$SCRATCH_MNT" | tee -a $seq.full
106         [ $? != 0 ] && echo xfs_freeze -u "$SCRATCH_MNT" failed | \
107             tee -a $seq.full
108         sleep 2
109
110         echo  | tee -a $seq.full
111         let i=$i+1
112 done
113
114 # stop fsstress iterations
115 rm $tmp.running
116
117 # wait for fsstresses to finish
118 wait
119
120 _check_scratch_fs
121
122 exit 1