btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 610
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2020 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. 610
6 #
7 # Test a fallocate() zero range operation against a large file range for which
8 # there are many small extents allocated. Verify the operation does not fail
9 # and the respective range return zeroes on subsequent reads.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -f $tmp.*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29 _supported_fs generic
30 _require_scratch
31 _require_xfs_io_command "fzero"
32 _require_xfs_io_command "fpunch"
33 _require_test_program "punch-alternating"
34
35 rm -f $seqres.full
36
37 _scratch_mkfs >>$seqres.full 2>&1
38 _scratch_mount
39
40 # Create a file with many small extents. To speed up file creation, do
41 # buffered writes and then punch a hole on every other block.
42 $XFS_IO_PROG -f -c "pwrite -S 0xab -b 10M 0 100M" \
43         $SCRATCH_MNT/foobar >>$seqres.full
44 $here/src/punch-alternating $SCRATCH_MNT/foobar >>$seqres.full
45
46 # For btrfs, trigger a transaction commit to force metadata COW for the
47 # following fallocate zero range operation.
48 sync
49
50 $XFS_IO_PROG -c "fzero 0 100M" $SCRATCH_MNT/foobar
51
52 # Check the file content after umounting and mounting again the fs, to verify
53 # everything was persisted.
54 _scratch_cycle_mount
55
56 echo "File content after zero range operation:"
57 od -A d -t x1 $SCRATCH_MNT/foobar
58
59 status=0
60 exit