xfstests: convert tests to use new results directory
[xfstests-dev.git] / tests / xfs / 109
1 #! /bin/bash
2 # FS QA Test No. 109
3 #
4 # ENOSPC deadlock case from Asano Masahiro.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2005 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 seqres=$RESULT_DIR/$seq
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
39
40 # real QA test starts here
41 _supported_fs xfs
42 _supported_os Linux XFS
43 _require_scratch
44
45 populate()
46 {
47         # "faststart" lets us effectively skip (re-)population
48         [ "X$faststart" != "X" ] && rm -f $SCRATCH_MNT/F*
49
50         # create many small files using most available space
51         echo "creating small files..."
52         i=0
53         while [ $i -le $files -a "X$faststart" = "X" ]; do
54                 file=$SCRATCH_MNT/f$i
55                 xfs_io -f -d -c 'pwrite -b 64k 0 64k' $file >/dev/null
56                 let i=$i+1
57         done
58
59         # remove every second file, freeing up lots of space
60         echo "removing small files..."
61         i=1
62         while [ $i -le $files -a "X$faststart" = "X" ]; do
63                 rm $SCRATCH_MNT/f$i
64                 let i=$i+2
65         done
66
67         echo "flushing changes via umount/mount."
68         umount $SCRATCH_DEV
69         _scratch_mount
70 }
71
72 allocate()
73 {
74         # now try to hit the deadlock
75         echo "starting parallel allocators..."
76         i=0
77         while [ $i -le 10 ]; do
78                 file=$SCRATCH_MNT/F$i
79                 {
80                         j=0
81                         while [ $j -lt 100 ]; do
82                                 xfs_io -f -c 'pwrite -b 64k 0 16m' $file \
83                                         >/dev/null 2>&1
84                                 rm $file
85                                 let j=$j+1
86                         done
87                 } &
88                 let i=$i+1
89         done
90
91         wait
92         echo "all done!"
93 }
94
95 # real QA test starts here
96 umount $SCRATCH_DEV 2>/dev/null
97 _scratch_mount
98
99 # see if faststart is possible (and requested)
100 files=2000
101 faststart=""
102 if [ -n "$FASTSTART" -a -f $SCRATCH_MNT/f0 ]; then
103         faststart="-N"  # causes us to skip the mkfs step
104 fi
105 umount $SCRATCH_DEV
106
107 _scratch_mkfs_xfs -dsize=160m,agcount=4 $faststart | _filter_mkfs 2>$tmp.mkfs
108 cat $tmp.mkfs >>$seqres.full
109 _scratch_mount
110
111 populate
112 allocate
113 status=0
114 exit