summaryrefslogtreecommitdiff
path: root/tests/btrfs/190
blob: 3aa718e2b1e80ca6acf7432c994651e55489bae6 (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
# Copyright (c) 2019 SUSE Linux Products GmbH.  All Rights Reserved.
#
# FS QA Test 190
#
# A general test to validate that balance and qgroups work correctly when
# balance needs to be resumed on mount.
#
. ./common/preamble
_begin_fstest auto quick replay balance qgroup

# Import common functions.
. ./common/filter
. ./common/dmlogwrites

# real QA test starts here

# Modify as appropriate.
_supported_fs btrfs
_require_scratch
# and we need extra device as log device
_require_log_writes

nr_files=512				# enough metadata to bump tree height
file_size=2048				# small enough to be inlined

_log_writes_init $SCRATCH_DEV
_log_writes_mkfs >> $seqres.full 2>&1

_log_writes_mount
$BTRFS_UTIL_PROG quota enable $SCRATCH_MNT >> $seqres.full
$BTRFS_UTIL_PROG quota rescan -w $SCRATCH_MNT >> $seqres.full

# Create enough metadata for later balance
for ((i = 0; i < $nr_files; i++)); do
	_pwrite_byte 0xcd 0 $file_size $SCRATCH_MNT/file_$i > /dev/null
done

# Flush delalloc so that balance has work to do.
sync

# Balance metadata so we will have at least one transaction committed with
# valid reloc tree, and hopefully another commit with orphan reloc tree.
_run_btrfs_balance_start -f -m $SCRATCH_MNT >> $seqres.full

_log_writes_unmount
_log_writes_remove

cur=$(_log_writes_find_next_fua 0)
echo "cur=$cur" >> $seqres.full
while [ ! -z "$cur" ]; do
	_log_writes_replay_log_range $cur $SCRATCH_DEV >> $seqres.full

	# Test that no crashes happen or any other kind of failure.
	_scratch_mount
	_scratch_unmount

	# Don't trigger fsck here, as relocation get paused,
	# at that transistent state, qgroup number may differ
	# and cause false alert.

	prev=$cur
	cur=$(_log_writes_find_next_fua $(($cur + 1)))
	[ -z "$cur" ] && break
done

# Now the fs has finished its balance and qgroup should be consistent.
# Fstest will automatically check the fs and btrfs check will report
# any qgroup inconsistent if something went wrong.

echo "Silence is golden"

# success, all done
status=0
exit