Add support to properly dump and restore the new inode flags:
[xfstests-dev.git] / 083
1 #! /bin/sh
2 # XFS 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 }
57 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
58
59 # get standard environment, filters and checks
60 . ./common.rc
61 . ./common.filter
62
63 # real QA test starts here
64 _require_scratch
65 _require_nobigloopfs
66
67 rm -f $seq.full
68
69 workout()
70 {
71         fsz=$1
72         ags=$2
73         procs=$3
74
75         umount $SCRATCH_DEV >/dev/null 2>&1
76         echo "*** mkfs -dsize=$fsz,agcount=$ags"    >>$seq.full
77         echo ""                                     >>$seq.full
78         _scratch_mkfs_xfs -dsize=$fsz,agcount=$ags  >>$seq.full 2>&1 \
79                 || _fail "size=$fsz,agcount=$ags mkfs failed"
80         _scratch_mount                              >>$seq.full 2>&1 \
81                 || _fail "mount failed"
82
83         ltp/fsstress -d $SCRATCH_MNT -w -p $procs -n 10000 $FSSTRESS_AVOID \
84                 >>$seq.full
85         _check_scratch_fs
86 }
87
88 echo "*** test out-of-space handling for random write operations"
89
90 # args: filesystem size/ag count/number fsstress processes
91
92 workout 50m 3 1
93 workout 100m 6 2
94
95 #workout 50m 3 10
96 # NOTE: deadlocks exist at small AG counts and large numbers
97 #       of processes - TODO!
98
99 echo "*** done"
100 status=0
101 exit