xfs: force file creation to the data device for certain layout tests
[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_fs xfs
37 _require_scratch_reflink
38 _require_cp_reflink
39 _require_xfs_io_command "fiemap"
40 _require_xfs_io_command "cowextsize"
41 _require_xfs_io_command "funshare"
42
43 rm -f $seqres.full
44
45 echo "Format and mount"
46 _scratch_mkfs > $seqres.full 2>&1
47 _scratch_mount >> $seqres.full 2>&1
48
49 testdir=$SCRATCH_MNT/test-$seq
50 mkdir $testdir
51
52 blksz=65536
53 nr=128
54 filesize=$((blksz * nr))
55 bufnr=16
56 bufsize=$((blksz * bufnr))
57
58 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
59 real_blksz=$(_get_block_size $testdir)
60 internal_blks=$((filesize / real_blksz))
61
62 echo "Create the original files"
63 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
64 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
65 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
66 _scratch_cycle_mount
67
68 echo "Compare files"
69 md5sum $testdir/file1 | _filter_scratch
70 md5sum $testdir/file2 | _filter_scratch
71
72 echo "CoW and unmount"
73 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
74 cat $testdir/file2 > /dev/null
75 $XFS_IO_PROG -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $filesize" -c "fdatasync" $testdir/file2 >> $seqres.full
76 $XFS_IO_PROG -f -c "fadvise -d 0 $filesize" -c "fsync" $testdir/file2 >> $seqres.full
77 $XFS_IO_PROG -f -c "funshare 0 $filesize" $testdir/file2 >> $seqres.full
78 _scratch_cycle_mount
79
80 echo "Compare files"
81 md5sum $testdir/file1 | _filter_scratch
82
83 echo "Check extent counts"
84 old_extents=$(_count_extents $testdir/file1)
85 new_extents=$(_count_extents $testdir/file2)
86
87 echo "old extents: $old_extents" >> $seqres.full
88 echo "new extents: $new_extents" >> $seqres.full
89 echo "maximum extents: $internal_blks" >> $seqres.full
90 test $new_extents -lt $((internal_blks / 20)) || test $new_extents -lt 15 \
91         || echo "file2 badly fragmented"
92
93 # success, all done
94 status=0
95 exit