generic: Verify the inheritance behavior of FS_XFLAG_DAX flag in various combinations
[xfstests-dev.git] / tests / generic / 447
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 447
6 #
7 # See how well we handle deleting a file with a million refcount extents.
8 #
9 seq=`basename "$0"`
10 seqres="$RESULT_DIR/$seq"
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20     cd /
21     rm -f "$tmp".* $testdir/file1
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/attr
28 . ./common/reflink
29
30 # real QA test starts here
31 _supported_os Linux
32 _require_scratch_reflink
33 _require_cp_reflink
34 _require_test_program "punch-alternating"
35 _require_xfs_io_command "fpunch"
36
37 rm -f "$seqres.full"
38
39 echo "Format and mount"
40 _scratch_mkfs > "$seqres.full" 2>&1
41 _scratch_mount >> "$seqres.full" 2>&1
42
43 testdir="$SCRATCH_MNT/test-$seq"
44 mkdir "$testdir"
45
46 # Setup for one million blocks, but we'll accept stress testing down to
47 # 2^17 blocks... that should be plenty for anyone.
48 fnr=20
49 free_blocks=$(stat -f -c '%a' "$testdir")
50 blksz=$(_get_block_size "$testdir")
51 space_avail=$((free_blocks * blksz))
52 calc_space() {
53         blocks_needed=$(( 2 ** (fnr + 1) ))
54         space_needed=$((blocks_needed * blksz * 5 / 4))
55 }
56 calc_space
57 while test $space_needed -gt $space_avail; do
58         fnr=$((fnr - 1))
59         calc_space
60 done
61 test $fnr -lt 17 && _notrun "Insufficient space for stress test; would only create $blocks_needed extents ($space_needed/$space_avail blocks)."
62
63 echo "Create a many-block file"
64 echo "creating $blocks_needed blocks..." >> "$seqres.full"
65 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b 4194304 0 $((2 ** (fnr + 1) * blksz))" "$testdir/file1" >> "$seqres.full"
66
67 echo "Reflinking file"
68 _cp_reflink $testdir/file1 $testdir/file2
69
70 echo "Punch file2"
71 echo "Punching file2..." >> "$seqres.full"
72 "$here/src/punch-alternating" "$testdir/file2" >> "$seqres.full"
73 echo "...done" >> "$seqres.full"
74 _scratch_cycle_mount
75
76 echo "Delete file1"
77 rm -rf $testdir/file1
78
79 # success, all done
80 status=0
81 exit