generic: test MADV_POPULATE_READ with IO errors
[xfstests-dev.git] / tests / xfs / 193
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 193
6 #
7 # Test fragmentation after a lot of random CoW:
8 # - Create two reflinked files.  Set extsz hint on second file.
9 # - Buffered write to random offsets to scatter CoW reservations.
10 # - Check the number of extents.
11 #
12 . ./common/preamble
13 _begin_fstest auto quick clone
14
15 # Import common functions.
16 . ./common/filter
17 . ./common/reflink
18
19 # real QA test starts here
20 _supported_fs xfs
21 _require_scratch_reflink
22 _require_cp_reflink
23 _require_xfs_io_command "fiemap"
24 _require_xfs_io_command "cowextsize"
25
26 echo "Format and mount"
27 _scratch_mkfs > $seqres.full 2>&1
28 _scratch_mount >> $seqres.full 2>&1
29
30 testdir=$SCRATCH_MNT/test-$seq
31 mkdir $testdir
32
33 blksz=65536
34 nr=128
35 filesize=$((blksz * nr))
36 bufnr=16
37 bufsize=$((blksz * bufnr))
38
39 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
40 real_blksz=$(_get_block_size $testdir)
41 internal_blks=$((filesize / real_blksz))
42
43 echo "Create the original files"
44 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
45 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
46 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
47 _scratch_cycle_mount
48
49 echo "Compare files"
50 md5sum $testdir/file1 | _filter_scratch
51 md5sum $testdir/file2 | _filter_scratch
52
53 echo "CoW and unmount"
54 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
55 $XFS_IO_PROG -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $filesize" -c "fdatasync" $testdir/file2 >> $seqres.full
56 _scratch_cycle_mount
57
58 echo "Compare files"
59 md5sum $testdir/file1 | _filter_scratch
60
61 echo "Check extent counts"
62 old_extents=$(_count_extents $testdir/file1)
63 new_extents=$(_count_extents $testdir/file2)
64
65 echo "old extents: $old_extents" >> $seqres.full
66 echo "new extents: $new_extents" >> $seqres.full
67 echo "maximum extents: $internal_blks" >> $seqres.full
68 test $new_extents -lt $((internal_blks * 2 / 3)) || echo "file2 badly fragmented"
69
70 # success, all done
71 status=0
72 exit