summaryrefslogtreecommitdiff
path: root/tests/btrfs/021
blob: 1b55834aa99cd6ffed08d006312b60ffa2f12e15 (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
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2013 Oracle.  All Rights Reserved.
#
# FS QA Test No. 021
#
# A regression test of running btrfs balance and defrag concurrently.
#
# The test aims to trigger snapshot-aware defrag path in endio by
# running balance, which is not expected and leads to a crash.
#
. ./common/preamble
_begin_fstest auto quick balance defrag

# Import common functions.
. ./common/filter

# real QA test starts here
run_test()
{
	_run_btrfs_balance_start $SCRATCH_MNT >> $seqres.full &

	sleep 0.5

	# In new versions of btrfs-progs (6.0+), the defrag command outputs to
	# stdout the path of the files it operates on. So ignore that.
	find $SCRATCH_MNT -type f -print0 | xargs -0 \
		$BTRFS_UTIL_PROG filesystem defrag -f > /dev/null

	sync
	wait
}

_supported_fs btrfs
_require_scratch

_scratch_mkfs > /dev/null 2>&1
_scratch_mount

# This is going to reproduce a race senario between balance and the writeback
# of snapshot-aware defragment.

# we first create a few files to get higher btree height.
for j in `seq 0 100`; do
	touch $SCRATCH_MNT/padding-$j
done

# Get 50 files with fragments by using backwards writes.
for j in `seq 0 50`; do
	for i in `seq 20 -1 1`; do
		$XFS_IO_PROG -f -d -c "pwrite $(($i * 4096)) 4096" \
		$SCRATCH_MNT/foo-$j >> $seqres.full | _filter_xfs_io
	done
done

# Make sure that our metadata makes it self on disk.
sync

run_test

# success, all done
echo "Silence is golden"
status=0
exit