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