btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 446
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Fujitsu.  All Rights Reserved.
4 #
5 # FS QA Test No. 446
6 #
7 # Regression test for commit:
8 # 04197b3 ("xfs: don't BUG() on mixed direct and mapped I/O")
9 #
10 # This case tests a race between a direct I/O read and a
11 # mapped write to a hole in a file.  On xfs filesystem, it
12 # will trigger a BUG_ON().
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1    # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         rm -rf $tmp.*
26 }
27
28 # get standard environment and checks
29 . ./common/rc
30 . ./common/filter
31
32 # real QA test starts here
33 _require_scratch
34 _require_xfs_io_command "truncate"
35 _require_xfs_io_command "fpunch"
36
37 rm -f $seqres.full
38
39 # format and mount
40 _scratch_mkfs > $seqres.full 2>&1
41 _scratch_mount >> $seqres.full 2>&1
42
43 filesz=$((65536 * 2))
44
45 # create a test file with a hole
46 $XFS_IO_PROG -f -c "truncate $((filesz * 2))" $SCRATCH_MNT/file >> $seqres.full
47
48 # run a background dio read to a hole in a loop
49 for i in `seq 0 999`; do
50         $XFS_IO_PROG -d -c "pread 0 $filesz" $SCRATCH_MNT/file > /dev/null 2>&1
51 done &
52
53 dread_pid=$!
54
55 # run mapped write to the same hole as dio read
56 # loop until background dio read exits
57 while kill -s 0 $dread_pid >/dev/null 2>&1; do
58         $XFS_IO_PROG -c "mmap 0 $filesz" -c "mwrite 0 $filesz" $SCRATCH_MNT/file \
59                 > /dev/null
60         $XFS_IO_PROG -c "fpunch 0 $filesz" $SCRATCH_MNT/file > /dev/null
61 done
62
63 wait $dread_pid > /dev/null 2>&1
64
65 echo "Silence is golden"
66
67 # check dmesg, filtering out expected warnings about mixed mmap/dio
68 # and umount first in case umount triggers warnings
69 _scratch_unmount
70 _check_dmesg _filter_aiodio_dmesg
71
72 status=$?
73 exit