common: kill _supported_os
[xfstests-dev.git] / tests / btrfs / 156
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 SUSE Linux Products GmbH.  All Rights Reserved.
4 #
5 # FS QA Test 156
6 #
7 # Check if btrfs can correctly trim free space in block groups
8 #
9 # An ancient regression prevent btrfs from trimming free space inside
10 # existing block groups, if bytenr of block group starts beyond
11 # btrfs_super_block->total_bytes.
12 # However all bytenr in btrfs is in btrfs logical address space,
13 # where any bytenr in range [0, U64_MAX] is valid.
14 #
15 # Fixed by patch named "btrfs: Ensure btrfs_trim_fs can trim the whole fs".
16 #
17 seq=`basename $0`
18 seqres=$RESULT_DIR/$seq
19 echo "QA output created by $seq"
20
21 here=`pwd`
22 tmp=/tmp/$$
23 status=1        # failure is the default!
24 trap "_cleanup; exit \$status" 0 1 2 3 15
25
26 _cleanup()
27 {
28         cd /
29         rm -f $tmp.*
30 }
31
32 # get standard environment, filters and checks
33 . ./common/rc
34 . ./common/filter
35
36 # remove previous $seqres.full before test
37 rm -f $seqres.full
38
39 # real QA test starts here
40
41 # Modify as appropriate.
42 _supported_fs btrfs
43 _require_scratch
44 _require_fstrim
45
46 # 1024fs size
47 fs_size=$((1024 * 1024 * 1024))
48
49 # Use small files to fill half of the fs
50 file_size=$(( 1024 * 1024 ))
51 nr_files=$(( $fs_size / $file_size / 2))
52
53 # Force to use single data and meta profile.
54 # Since the test relies on fstrim output, which will differ for different
55 # profiles
56 _scratch_mkfs -b $fs_size -m single -d single > /dev/null
57 _scratch_mount
58
59 _require_batched_discard "$SCRATCH_MNT"
60
61 for n in $(seq -w 0 $(( $nr_files - 1))); do
62         $XFS_IO_PROG -f -c "pwrite 0 $file_size" "$SCRATCH_MNT/file_$n" \
63                 > /dev/null
64 done
65
66 # Flush all buffer data into disk, to trigger chunk allocation
67 sync
68
69 # Now we have take at least 50% of the filesystem, relocate all chunks twice
70 # so all chunks will start after 1G in logical space.
71 # (Btrfs chunk allocation will not rewind to reuse lower space)
72 _run_btrfs_balance_start $SCRATCH_MNT >> $seqres.full
73
74 # To avoid possible false ENOSPC alert on v4.15-rc1, seems to be a
75 # reserved space related bug (maybe related to outstanding space rework?),
76 # but that's another story.
77 sync
78
79 _run_btrfs_balance_start $SCRATCH_MNT >> $seqres.full
80
81 # Now remove half of the files to make some holes for later trim.
82 # While still keep the chunk space fragmented, so no chunk will be freed
83 rm $SCRATCH_MNT/file_*[13579] -f
84
85 # Make sure space is freed
86 sync
87
88 trimmed=$($FSTRIM_PROG -v "$SCRATCH_MNT" | _filter_fstrim)
89 echo "Trimmed=$trimmed total_size=$fs_size ratio=$(($trimmed * 100 / $fs_size))%" \
90         >> $seqres.full
91
92 # For correct full fs trim, both unallocated space (less than 50%)
93 # and free space in existing block groups (about 25%) should be trimmed.
94 # If less than 50% is trimmed, then only unallocated space is trimmed.
95 # BTW, without fix only 31% can be trimmed, while after fix it's 64%.
96 if [ $trimmed -lt $(( $fs_size / 2)) ]; then
97         echo "Free space in block groups not trimmed"
98         echo "Trimmed=$trimmed total_size=$fs_size ratio=$(($trimmed * 100 / $fs_size))%"
99 fi
100
101 echo "Silence is golden"
102 # success, all done
103 status=0
104 exit