btrfs/139: require 2GB scratch dev
[xfstests-dev.git] / tests / btrfs / 028
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016 Fujitsu. All Rights Reserved.
4 #
5 # FS QA Test 028
6 #
7 # Test if qgroup can handle extent de-reference during reallocation.
8 # "extent de-reference" means that reducing an extent's reference count
9 # or freeing an extent.
10 # Although current qgroup can handle it, we still need to prevent any
11 # regression which may break current qgroup.
12 #
13 seq=`basename $0`
14 seqres=$RESULT_DIR/$seq
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1        # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24         cd /
25         rm -f $tmp.*
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31
32 # remove previous $seqres.full before test
33 rm -f $seqres.full
34
35 # real QA test starts here
36 _supported_fs btrfs
37 _supported_os Linux
38 _require_scratch
39 _require_btrfs_qgroup_report
40
41 _scratch_mkfs >/dev/null
42 _scratch_mount
43
44 _run_btrfs_util_prog quota enable $SCRATCH_MNT
45 _run_btrfs_util_prog quota rescan -w $SCRATCH_MNT
46
47 # Increase the probability of generating de-refer extent, and decrease
48 # other.
49 args=`_scale_fsstress_args -z \
50         -f write=10 -f unlink=10 \
51         -f creat=10 -f fsync=10 \
52         -f fsync=10 -n 100000 -p 2 \
53         -d $SCRATCH_MNT/stress_dir`
54 echo "Run fsstress $args" >>$seqres.full
55 $FSSTRESS_PROG $args >/dev/null 2>&1 &
56 fsstress_pid=$!
57
58 echo "Start balance" >>$seqres.full
59 _btrfs_stress_balance -d $SCRATCH_MNT >/dev/null 2>&1 &
60 balance_pid=$!
61
62 # 30s is enough to trigger bug
63 sleep $((30*$TIME_FACTOR))
64 kill $fsstress_pid $balance_pid &> /dev/null
65 wait
66
67 # kill _btrfs_stress_balance can't end balance, so call btrfs balance cancel
68 # to cancel running or paused balance.
69 $BTRFS_UTIL_PROG balance cancel $SCRATCH_MNT &> /dev/null
70
71 _run_btrfs_util_prog filesystem sync $SCRATCH_MNT
72
73 _scratch_unmount
74
75 # qgroup will be checked at _check_scratch_fs() by fstest.
76 echo "Silence is golden"
77 status=0
78
79 exit