c2300e7c336f84cbf50ea8bf2ac370e633e5e0cd
[xfstests-dev.git] / 083
1 #! /bin/sh
2 # FS QA Test No. 083
3 #
4 # Exercise filesystem full behaviour - run numerous fsstress
5 # processes in write mode on a small filesystem.  NB: delayed
6 # allocate flushing is quite deadlock prone at the filesystem
7 # full boundary due to the fact that we will retry allocation
8 # several times after flushing, before giving back ENOSPC.
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
12
13 # This program is free software; you can redistribute it and/or modify it
14 # under the terms of version 2 of the GNU General Public License as
15 # published by the Free Software Foundation.
16
17 # This program is distributed in the hope that it would be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20
21 # Further, this software is distributed without any warranty that it is
22 # free of the rightful claim of any third person regarding infringement
23 # or the like.  Any license provided herein, whether implied or
24 # otherwise, applies only to this software file.  Patent licenses, if
25 # any, provided herein do not apply to combinations of this program with
26 # other software, or any other product whatsoever.
27
28 # You should have received a copy of the GNU General Public License along
29 # with this program; if not, write the Free Software Foundation, Inc., 59
30 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
31
32 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
33 # Mountain View, CA  94043, or:
34
35 # http://www.sgi.com 
36
37 # For further information regarding this notice, see: 
38
39 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
40 #-----------------------------------------------------------------------
41 #
42 # creator
43 owner=nathans@sgi.com
44
45 seq=`basename $0`
46 echo "QA output created by $seq"
47
48 here=`pwd`
49 tmp=/tmp/$$
50 status=1
51
52 _cleanup()
53 {
54         echo "*** unmount"
55         umount $SCRATCH_MNT 2>/dev/null
56         rm -f $tmp.*
57 }
58 trap "_cleanup; exit \$status" 0 1 2 3 15
59
60 # get standard environment, filters and checks
61 . ./common.rc
62 . ./common.filter
63
64 # real QA test starts here
65 _supported_fs xfs
66 _supported_os IRIX Linux
67
68 _require_scratch
69 _require_nobigloopfs
70
71 rm -f $seq.full
72
73 workout()
74 {
75         fsz=$1
76         ags=$2
77         procs=$3
78
79         umount $SCRATCH_DEV >/dev/null 2>&1
80         echo "*** mkfs -dsize=$fsz,agcount=$ags"    >>$seq.full
81         echo ""                                     >>$seq.full
82         _scratch_mkfs_xfs -dsize=$fsz,agcount=$ags  >>$seq.full 2>&1 \
83                 || _fail "size=$fsz,agcount=$ags mkfs failed"
84         _scratch_mount                              >>$seq.full 2>&1 \
85                 || _fail "mount failed"
86
87         ltp/fsstress -d $SCRATCH_MNT -w -p $procs -n 10000 $FSSTRESS_AVOID \
88                 >>$seq.full
89         _check_scratch_fs
90 }
91
92 echo "*** test out-of-space handling for random write operations"
93
94 # args: filesystem size/ag count/number fsstress processes
95
96 workout 100m 6 15
97
98 echo "*** done"
99 status=0
100 exit