common: Check the file system consistency on SCRATCH_DEV
[xfstests-dev.git] / tests / ext4 / 302
1 #! /bin/bash
2 # FSQA Test No. 302
3 #
4 # Ext4 defragmentation stress test
5 # Perform defragmentation on file under buffered io
6 # while third task does direct io to donor file
7 #-----------------------------------------------------------------------
8 # (c) 2013 Dmitry Monakhov
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 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 fio_config=$tmp.fio
33 status=1        # failure is the default!
34 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common/rc
38 . ./common/filter
39 . ./common/defrag
40
41 # real QA test starts here
42 _supported_os Linux
43 _supported_fs ext4
44 _need_to_be_root
45 _require_scratch
46 _require_defrag
47
48 BLK_DEV_SIZE=`blockdev --getsz $SCRATCH_DEV`
49 # We need space for 2 files (test file, and donor one)
50 # reserve 30% in order to avoid ENOSPC
51 FILE_SIZE=$((BLK_DEV_SIZE * (512 / (2 + 1))))
52
53 cat >$fio_config <<EOF
54 # Common e4defrag regression tests
55 [global]
56 ioengine=ioe_e4defrag
57 iodepth=1
58 directory=${SCRATCH_MNT}
59 filesize=${FILE_SIZE}
60 size=999G
61 buffered=0
62 fadvise_hint=0
63
64 ##########################################
65 # Test2
66 # Perform defragmentation on file under buffered io
67 # while third task does direct io to donor file
68 #
69 # Continuous sequential defrag activity
70 [defrag-4k]
71 stonewall
72 ioengine=e4defrag
73 iodepth=1
74 bs=128k
75 donorname=test2.def
76 filename=test2
77 inplace=0
78 rw=write
79 numjobs=${LOAD_FACTOR}
80 runtime=30*${TIME_FACTOR}
81 time_based
82
83 # Run DIO/AIO for donor file
84 [donor-file-fuzzer]
85 ioengine=libaio
86 iodepth=128*${LOAD_FACTOR}
87 numjobs=${LOAD_FACTOR}
88 verify=0
89 direct=1
90 bs=64k
91 rw=randwrite
92 filename=test2.def
93 runtime=30*${TIME_FACTOR}
94 time_based
95
96 # Verifier thread
97 [aio-dio-verifier]
98 ioengine=libaio
99 iodepth=128*${LOAD_FACTOR}
100 numjobs=1
101 verify=crc32c-intel
102 verify_fatal=1
103 verify_dump=1
104 verify_backlog=1024
105 verify_async=1
106 verifysort=1
107 buffered=1
108 bs=64k
109 rw=randrw
110 filename=test2
111 runtime=30*${TIME_FACTOR}
112 time_based
113
114 EOF
115
116 _workout()
117 {
118         echo ""
119         echo " Start defragment activity"
120         echo ""
121         cat $fio_config >>  $seqres.full
122         run_check $FIO_PROG $fio_config
123 }
124
125 _require_fio $fio_config
126
127 _scratch_mkfs  >> $seqres.full 2>&1
128 _scratch_mount
129
130 if ! _workout; then
131         umount $SCRATCH_DEV 2>/dev/null
132         exit
133 fi
134
135 if ! _scratch_unmount; then
136         echo "failed to umount"
137         status=1
138         exit
139 fi
140 status=0
141 exit