xfs/419: remove irrelevant swapfile test
[xfstests-dev.git] / tests / xfs / 231
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. 231
6 #
7 # Test recovery of unused CoW reservations:
8 # - Create two reflinked files.  Set extsz hint on second file.
9 # - Dirty a single byte on a number of CoW reservations in the second file.
10 # - Fsync to flush out the dirty pages.
11 # - Wait for the reclaim to run.
12 # - Write more and see how bad fragmentation is.
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1    # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         cd /
26         test -n "$old_cowgc_interval" && \
27                 _xfs_set_cowgc_interval $old_cowgc_interval
28         rm -rf $tmp.*
29 }
30
31 # get standard environment, filters and checks
32 . ./common/rc
33 . ./common/filter
34 . ./common/reflink
35
36 # real QA test starts here
37 _supported_fs xfs
38 _require_scratch_reflink
39 _require_cp_reflink
40 _require_xfs_io_command "cowextsize"
41 _require_xfs_io_command "falloc"
42 _require_xfs_io_command "fiemap"
43
44 old_cowgc_interval=$(_xfs_get_cowgc_interval)
45
46 rm -f $seqres.full
47
48 echo "Format and mount"
49 _scratch_mkfs > $seqres.full 2>&1
50 _scratch_mount >> $seqres.full 2>&1
51
52 testdir=$SCRATCH_MNT/test-$seq
53 mkdir $testdir
54
55 blksz=65536
56 nr=64
57 filesize=$((blksz * nr))
58 bufnr=2
59 bufsize=$((blksz * bufnr))
60
61 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
62 real_blksz=$(_get_block_size $testdir)
63 internal_blks=$((filesize / real_blksz))
64
65 echo "Create the original files"
66 $XFS_IO_PROG -c "cowextsize $bufsize" $testdir
67 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file1 >> $seqres.full
68 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file2.chk >> $seqres.full
69 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
70 _scratch_cycle_mount
71
72 echo "Compare files"
73 md5sum $testdir/file1 | _filter_scratch
74 md5sum $testdir/file2 | _filter_scratch
75 md5sum $testdir/file2.chk | _filter_scratch
76
77 echo "CoW and leave leftovers"
78 _xfs_set_cowgc_interval 2
79 seq 2 2 $((nr - 1)) | while read f; do
80         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2 >> $seqres.full
81         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2.chk >> $seqres.full
82 done
83 sync
84
85 echo "Wait for CoW expiration"
86 sleep 3
87
88 echo "Allocate free space"
89 for i in $(seq 1 32); do
90         $XFS_IO_PROG -f -c "falloc 0 1" $testdir/junk.$i >> $seqres.full
91 done
92 $XFS_IO_PROG -f -c "falloc 0 $filesize" $testdir/junk >> $seqres.full
93
94 echo "CoW and leave leftovers"
95 _xfs_set_cowgc_interval $old_cowgc_interval
96 seq 2 2 $((nr - 1)) | while read f; do
97         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2 >> $seqres.full
98         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2.chk >> $seqres.full
99 done
100 sync
101
102 echo "Compare files"
103 md5sum $testdir/file1 | _filter_scratch
104 md5sum $testdir/file2 | _filter_scratch
105 md5sum $testdir/file2.chk | _filter_scratch
106
107 echo "Check extent counts"
108 old_extents=$(_count_extents $testdir/file1)
109 new_extents=$(_count_extents $testdir/file2)
110
111 echo "old extents: $old_extents" >> $seqres.full
112 echo "new extents: $new_extents" >> $seqres.full
113 echo "maximum extents: $internal_blks" >> $seqres.full
114 test $new_extents -le $((3 * nr / bufnr)) || echo "file2 more fragmented than expected"
115
116 # success, all done
117 status=0
118 exit