Update copyright annotations and license boilerplates to correspond with SGI Legals...
[xfstests-dev.git] / 104
1 #! /bin/sh
2 # FS QA Test No. 104
3 #
4 # XFS online growfs-while-allocating tests (data subvol variant)
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
8
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of version 2 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, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17 # Further, this software is distributed without any warranty that it is
18 # free of the rightful claim of any third person regarding infringement
19 # or the like.  Any license provided herein, whether implied or
20 # otherwise, applies only to this software file.  Patent licenses, if
21 # any, provided herein do not apply to combinations of this program with
22 # other software, or any other product whatsoever.
23
24 # You should have received a copy of the GNU General Public License along
25 # with this program; if not, write the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
27
28 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
29 # Mountain View, CA  94043, or:
30
31 # http://www.sgi.com 
32
33 # For further information regarding this notice, see: 
34
35 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
36 #-----------------------------------------------------------------------
37 #
38 # creator
39 owner=nathans@sgi.com
40
41 seq=`basename $0`
42 echo "QA output created by $seq"
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=1        # failure is the default!
47 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
48
49 # get standard environment, filters and checks
50 . ./common.rc
51 . ./common.filter
52
53 _create_scratch()
54 {
55         echo "*** mkfs"
56         _scratch_mkfs_xfs $@ | tee -a $seq.full | _filter_mkfs 2>$tmp.mkfs
57         . $tmp.mkfs
58
59         echo "*** mount"
60         if ! _scratch_mount 2>/dev/null
61         then
62                 echo "failed to mount $SCRATCH_DEV"
63                 exit 1
64         fi
65 }
66  
67 _fill_scratch()
68 {
69         $XFS_IO_PROG -f -c "resvsp 0 ${1}" $SCRATCH_MNT/resvfile
70 }
71
72 _stress_scratch()
73 {
74         procs=3
75         nops=1000
76         # -w ensures that the only ops are ones which cause write I/O
77         ltp/fsstress -d $SCRATCH_MNT -w -p $procs -n $nops $FSSTRESS_AVOID &
78 }
79
80 # real QA test starts here
81 _supported_fs xfs
82 _require_scratch
83 _scratch_mkfs_xfs | tee -a $seq.full | _filter_mkfs 2>$tmp.mkfs
84 . $tmp.mkfs     # extract blocksize and data size for scratch device
85
86 endsize=`expr 550 \* 1048576`   # stop after growing this big
87 incsize=`expr  42 \* 1048576`   # grow in chunks of this size
88 modsize=`expr   4 \* $incsize`  # pause after this many increments
89
90 [ `expr $endsize / $dbsize` -lt $dblocks ] || _notrun "Scratch device too small"
91
92 nags=4
93 size=`expr 120 \* 1048576`      # 120 megabytes initially
94 sizeb=`expr $size / $dbsize`    # in data blocks
95 echo "*** creating scratch filesystem"
96 _create_scratch -dsize=${size} -dagcount=${nags}
97
98 fillsize=`expr 110 \* 1048576`  # 110 megabytes of filling
99 echo "*** using some initial space on scratch filesystem"
100 _fill_scratch $fillsize
101
102
103 # Grow the filesystem while actively stressing it...
104 # Kick off more stress threads on each iteration, grow; repeat.
105
106 while [ $size -le $endsize ]; do
107         echo "*** stressing a ${size} byte filesystem"
108         echo "*** stressing a ${sizeb} block filesystem" >> $seq.full
109         _stress_scratch
110         sleep 1
111         size=`expr $size + $incsize`
112         sizeb=`expr $size / $dbsize`    # in data blocks
113         echo "*** growing to a ${size} byte filesystem"
114         echo "*** growing to a ${sizeb} block filesystem" >> $seq.full
115         xfs_growfs -D ${sizeb} $SCRATCH_MNT \
116                 | tee -a $seq.full | _filter_mkfs 2>$tmp.growfs
117         . $tmp.growfs
118         [ `expr $size % $modsize` -eq 0 ] && wait       # every 4th iteration
119         echo AGCOUNT=$agcount | tee -a $seq.full
120         echo && echo >> $seq.full
121 done
122 wait    # stop for any remaining stress processes
123
124 umount $SCRATCH_DEV
125 _check_scratch_fs
126
127 status=0
128 exit