Rename _scratch_mount to _scratch_cycle_mount
[xfstests-dev.git] / tests / generic / 164
1 #! /bin/bash
2 # FS QA Test No. 164
3 #
4 # Test for races or FS corruption between reflink and buffered I/O reading the
5 # target file.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015 Oracle, 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
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 7 15
33
34 _cleanup()
35 {
36     cd /
37     rm -rf $tmp.*
38     wait
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/reflink
45
46 # real QA test starts here
47 _supported_os Linux
48 _require_scratch_reflink
49 _require_cp_reflink
50
51 echo "Format and mount"
52 _scratch_mkfs > $seqres.full 2>&1
53 _scratch_mount >> $seqres.full 2>&1
54
55 testdir=$SCRATCH_MNT/test-$seq
56 mkdir $testdir
57
58 loops=512
59 nr_loops=$((loops - 1))
60 blksz=65536
61
62 echo "Initialize files"
63 echo > $seqres.full
64 _pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
65 _pwrite_byte 0x62 0 $((loops * blksz)) $testdir/file2 >> $seqres.full
66 _cp_reflink $testdir/file1 $testdir/file3
67 _scratch_cycle_mount
68
69 fbytes() {
70         egrep -v '(61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61|62 62 62 62 62 62 62 62 62 62 62 62 62 62 62 62)'
71 }
72
73 reader() {
74         while [ ! -e $testdir/finished ]; do
75                 _read_range $testdir/file3 0 $((loops * blksz)) | fbytes
76         done
77 }
78
79 echo "Reflink and reread the files!"
80 reader &
81 for i in `seq 1 2`; do
82         seq $nr_loops -1 0 | while read i; do
83                 _reflink_range  $testdir/file1 $((i * blksz)) \
84                                 $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
85                 [ $? -ne 0 ] && break
86         done
87         seq $nr_loops -1 0 | while read i; do
88                 _reflink_range  $testdir/file2 $((i * blksz)) \
89                                 $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
90                 [ $? -ne 0 ] && break
91         done
92 done
93 echo "Finished reflinking"
94 touch $testdir/finished
95 wait
96
97 # success, all done
98 status=0
99 exit