xfs/007: fix regressions on V4 filesystems
[xfstests-dev.git] / tests / xfs / 198
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. 198
6 #
7 # Test fragmentation after a lot of random CoW:
8 # - Create two reflinked files.  Set extsz hint on second file.
9 # - Directio 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 _require_odirect
26
27 echo "Format and mount"
28 _scratch_mkfs > $seqres.full 2>&1
29 _scratch_mount >> $seqres.full 2>&1
30
31 testdir=$SCRATCH_MNT/test-$seq
32 mkdir $testdir
33
34 blksz=65536
35 nr=128
36 filesize=$((blksz * nr))
37 bufnr=16
38 bufsize=$((blksz * bufnr))
39
40 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
41 real_blksz=$(_get_block_size $testdir)
42 internal_blks=$((filesize / real_blksz))
43
44 echo "Create the original files"
45 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
46 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
47 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
48 _scratch_cycle_mount
49
50 echo "Compare files"
51 md5sum $testdir/file1 | _filter_scratch
52 md5sum $testdir/file2 | _filter_scratch
53
54 echo "CoW and unmount"
55 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
56 $XFS_IO_PROG -d -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $filesize" $testdir/file2 >> $seqres.full
57 _scratch_cycle_mount
58
59 echo "Compare files"
60 md5sum $testdir/file1 | _filter_scratch
61
62 echo "Check extent counts"
63 old_extents=$(_count_extents $testdir/file1)
64 new_extents=$(_count_extents $testdir/file2)
65
66 echo "old extents: $old_extents" >> $seqres.full
67 echo "new extents: $new_extents" >> $seqres.full
68 echo "maximum extents: $internal_blks" >> $seqres.full
69 test $new_extents -lt $((internal_blks * 2 / 3)) || echo "file2 badly fragmented"
70
71 # success, all done
72 status=0
73 exit