e56eb3aaa7cd05e670d8fe9bd5d2118ce02a6203
[xfstests-dev.git] / tests / xfs / 232
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. 232
6 #
7 # Test non-recovery of unused CoW reservations for dirty files:
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 # - Dirty a single byte anywhere in the second file.
12 # - Wait for the reclaim to run.
13 # - Write more and see how bad fragmentation is.
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     echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
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_xfs_io_command "cowextsize"
39 _require_scratch_reflink
40 _require_cp_reflink
41 _require_xfs_io_command "falloc"
42 _require_xfs_io_command "fiemap"
43
44 old_cow_lifetime=$(cat /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime)
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 echo 2 > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
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 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * 2)) 1" $testdir/file2 >> $seqres.full
87 sleep 3
88
89 echo "Allocate free space"
90 for i in $(seq 1 32); do
91         $XFS_IO_PROG -f -c "falloc 0 1" $testdir/junk.$i >> $seqres.full
92 done
93 $XFS_IO_PROG -f -c "falloc 0 $filesize" $testdir/junk >> $seqres.full
94
95 echo "CoW and leave leftovers"
96 echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
97 seq 2 2 $((nr - 1)) | while read f; do
98         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2 >> $seqres.full
99         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2.chk >> $seqres.full
100 done
101 sync
102
103 echo "Compare files"
104 md5sum $testdir/file1 | _filter_scratch
105 md5sum $testdir/file2 | _filter_scratch
106 md5sum $testdir/file2.chk | _filter_scratch
107
108 echo "Check extent counts"
109 old_extents=$(_count_extents $testdir/file1)
110 new_extents=$(_count_extents $testdir/file2)
111
112 echo "old extents: $old_extents" >> $seqres.full
113 echo "new extents: $new_extents" >> $seqres.full
114 echo "maximum extents: $internal_blks" >> $seqres.full
115 test $new_extents -le $((2 * nr / bufnr)) || echo "file2 more fragmented than expected"
116
117 # success, all done
118 status=0
119 exit