9142cabc7498ac7c245546aa27cf5f0c2104ad13
[xfstests-dev.git] / 109
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2005 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 109
22 #
23 # ENOSPC deadlock case from Asano Masahiro.
24 #
25 # creator
26 owner=nathans@sgi.com
27
28 seq=`basename $0`
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 >>$seq.full
109 _scratch_mount
110
111 populate
112 allocate
113 status=0
114 exit