blob: 60f28740c3d244a49599db3326c470bf91aa4f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) 2020, Oracle and/or its affiliates. All Rights Reserved.
#
# FS QA Test No. 521
#
# Tests xfs_growfs on the realtime volume to make sure none of it blows up.
# This is a regression test for the following patches:
#
# xfs: Set xfs_buf type flag when growing summary/bitmap files
# xfs: Set xfs_buf's b_ops member when zeroing bitmap/summary files
# xfs: fix realtime bitmap/summary file truncation when growing rt volume
# xfs: make xfs_growfs_rt update secondary superblocks
# xfs: annotate grabbing the realtime bitmap/summary locks in growfs
#
. ./common/preamble
_begin_fstest auto quick realtime growfs
# Override the default cleanup function.
_cleanup()
{
cd /
_scratch_unmount >> $seqres.full 2>&1
test -e "$rtdev" && losetup -d $rtdev >> $seqres.full 2>&1
rm -f $tmp.* $TEST_DIR/$seq.rtvol
}
# Import common functions.
. ./common/filter
# real QA test starts here
_supported_fs xfs
# Note that we don't _require_realtime because we synthesize a rt volume
# below.
_require_scratch_nocheck
_require_no_large_scratch_dev
echo "Create fake rt volume"
truncate -s 400m $TEST_DIR/$seq.rtvol
rtdev=$(_create_loop_device $TEST_DIR/$seq.rtvol)
echo "Format and mount 100m rt volume"
export USE_EXTERNAL=yes
export SCRATCH_RTDEV=$rtdev
_scratch_mkfs -r size=100m > $seqres.full
_try_scratch_mount || _notrun "Could not mount scratch with synthetic rt volume"
testdir=$SCRATCH_MNT/test-$seq
mkdir $testdir
echo "Check rt volume stats"
_xfs_force_bdev realtime $testdir
$XFS_INFO_PROG $SCRATCH_MNT >> $seqres.full
before=$(stat -f -c '%b' $testdir)
echo "Create some files"
_pwrite_byte 0x61 0 1m $testdir/original >> $seqres.full
echo "Grow fs"
$XFS_GROWFS_PROG $SCRATCH_MNT 2>&1 | _filter_growfs >> $seqres.full
_scratch_cycle_mount
echo "Recheck 400m rt volume stats"
$XFS_INFO_PROG $SCRATCH_MNT >> $seqres.full
after=$(stat -f -c '%b' $testdir)
_within_tolerance "rt volume size" $after $((before * 4)) 5% -v
echo "Create more copies to make sure the bitmap really works"
cp -p $testdir/original $testdir/copy3
echo "Check filesystem"
_check_scratch_fs
# success, all done
status=0
exit
|