xfs/029: filter out "extended-header: cycle: 1" from output
[xfstests-dev.git] / tests / xfs / 200
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. 200
6 #
7 # Test fragmentation after a lot of random CoW:
8 # - Create two reflinked files.  Set extsz hint on second file.
9 # - Read the whole file into memory.
10 # - Buffered write to random offsets to scatter CoW reservations.
11 # - fadvise(dontneed) the whole file to evict the pages.
12 # - falloc the whole fle to see if the extsz hints still apply.
13 # - Check the number of extents.
14 #
15 seq=`basename $0`
16 seqres=$RESULT_DIR/$seq
17 echo "QA output created by $seq"
18
19 here=`pwd`
20 tmp=/tmp/$$
21 status=1    # failure is the default!
22 trap "_cleanup; exit \$status" 0 1 2 3 15
23
24 _cleanup()
25 {
26     cd /
27     rm -rf $tmp.*
28 }
29
30 # get standard environment, filters and checks
31 . ./common/rc
32 . ./common/filter
33 . ./common/reflink
34
35 # real QA test starts here
36 _supported_os Linux
37 _supported_fs xfs
38 _require_scratch_reflink
39 _require_cp_reflink
40 _require_xfs_io_command "fiemap"
41 _require_xfs_io_command "cowextsize"
42 _require_xfs_io_command "funshare"
43
44 rm -f $seqres.full
45
46 echo "Format and mount"
47 _scratch_mkfs > $seqres.full 2>&1
48 _scratch_mount >> $seqres.full 2>&1
49
50 testdir=$SCRATCH_MNT/test-$seq
51 mkdir $testdir
52
53 blksz=65536
54 nr=128
55 filesize=$((blksz * nr))
56 bufnr=16
57 bufsize=$((blksz * bufnr))
58
59 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
60 real_blksz=$(_get_block_size $testdir)
61 internal_blks=$((filesize / real_blksz))
62
63 echo "Create the original files"
64 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
65 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
66 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
67 _scratch_cycle_mount
68
69 echo "Compare files"
70 md5sum $testdir/file1 | _filter_scratch
71 md5sum $testdir/file2 | _filter_scratch
72
73 echo "CoW and unmount"
74 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
75 cat $testdir/file2 > /dev/null
76 $XFS_IO_PROG -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $filesize" -c "fdatasync" $testdir/file2 >> $seqres.full
77 $XFS_IO_PROG -f -c "fadvise -d 0 $filesize" -c "fsync" $testdir/file2 >> $seqres.full
78 $XFS_IO_PROG -f -c "funshare 0 $filesize" $testdir/file2 >> $seqres.full
79 _scratch_cycle_mount
80
81 echo "Compare files"
82 md5sum $testdir/file1 | _filter_scratch
83
84 echo "Check extent counts"
85 old_extents=$(_count_extents $testdir/file1)
86 new_extents=$(_count_extents $testdir/file2)
87
88 echo "old extents: $old_extents" >> $seqres.full
89 echo "new extents: $new_extents" >> $seqres.full
90 echo "maximum extents: $internal_blks" >> $seqres.full
91 test $new_extents -lt $((internal_blks / 20)) || test $new_extents -lt 15 \
92         || echo "file2 badly fragmented"
93
94 # success, all done
95 status=0
96 exit