xfstests: Make test 272 work for ext3
[xfstests-dev.git] / 280
1 #! /bin/bash
2 # FS QA Test No. 280
3 #
4 # Test quota vs. suspend/freeze deadlock, 
5 # dcdbed85 quota: Fix deadlock with suspend and quotas
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2012 Red Hat, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=sandeen@sandeen.net
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 "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44 . ./common.quota
45
46 _require_scratch
47 _require_quota
48
49 # real QA test starts here
50
51 # Modify as appropriate.
52 _supported_fs generic
53 _supported_os Linux
54 _supported_fs ext3 ext4 xfs
55
56 umount $SCRATCH_DEV 2>/dev/null
57 _scratch_mkfs >> $seq.full 2>&1
58 _scratch_mount "-o usrquota,grpquota"
59 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
60 quotaon $SCRATCH_MNT 2>/dev/null
61 xfs_freeze -f $SCRATCH_MNT
62 setquota -u root 1 2 3 4 $SCRATCH_MNT &
63 sleep 1
64 xfs_freeze -u $SCRATCH_MNT
65 umount $SCRATCH_DEV
66
67 # Failure comes in the form of a deadlock.
68
69 # success, all done
70 status=0
71 exit