generic/611: Use _getfattr instead of GETFATTR_PROG
[xfstests-dev.git] / tests / generic / 176
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. 176
6 #
7 # See how well reflink handles reflinking a file with a million 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 -rf "$tmp".*
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 _require_scratch_reflink
32 _require_cp_reflink
33 _require_xfs_io_command "fpunch"
34 _require_test_program "punch-alternating"
35
36 rm -f "$seqres.full"
37
38 echo "Format and mount"
39 _scratch_mkfs > "$seqres.full" 2>&1
40 _scratch_mount >> "$seqres.full" 2>&1
41
42 testdir="$SCRATCH_MNT/test-$seq"
43 mkdir "$testdir"
44
45 # Setup for one million blocks, but we'll accept stress testing down to
46 # 2^17 blocks... that should be plenty for anyone.
47 fnr=20
48 free_blocks=$(stat -f -c '%a' "$testdir")
49 blksz=$(_get_block_size "$testdir")
50 space_avail=$((free_blocks * blksz))
51 calc_space() {
52         blocks_needed=$(( 2 ** (fnr + 1) ))
53         space_needed=$((blocks_needed * blksz * 5 / 4))
54 }
55 calc_space
56 while test $space_needed -gt $space_avail; do
57         fnr=$((fnr - 1))
58         calc_space
59 done
60 test $fnr -lt 17 && _notrun "Insufficient space for stress test; would only create $blocks_needed extents."
61
62 echo "Create a many-block file"
63 echo "creating $blocks_needed blocks..." >> "$seqres.full"
64 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b 4194304 0 $((2 ** (fnr + 1) * blksz))" "$testdir/file1" >> "$seqres.full"
65 echo "punching..." >> "$seqres.full"
66 "$here/src/punch-alternating" "$testdir/file1" >> "$seqres.full"
67 echo "...done" >> "$seqres.full"
68 _scratch_cycle_mount
69
70 echo "Reflink the big file"
71 bytes=$((blocks_needed * blksz))
72 echo "reflinking $((blocks_needed / 2)) blocks, $((bytes / 2)) bytes" >> "$seqres.full"
73 _reflink_range "$testdir/file1" 0 "$testdir/file2" 0 $bytes >> "$seqres.full"
74
75 # success, all done
76 status=0
77 exit