summaryrefslogtreecommitdiff
path: root/tests/btrfs/026
blob: 00914f10a3a6f3547757109cdf2eaa0ddb2f1e5c (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
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
#
# FSQA Test No. 026
#
# Test that doing a direct IO write against a file range that contains one
# prealloc extent and one compressed extent works correctly.
#
. ./common/preamble
_begin_fstest auto quick compress prealloc

. ./common/filter

_supported_fs btrfs
_require_scratch
_require_xfs_io_command "falloc"

_scratch_mkfs >>$seqres.full 2>&1
_scratch_mount "-o compress"

# Create a compressed extent covering the range [700K, 800K[.
$XFS_IO_PROG -f -s -c "pwrite -S 0xaa -b 100K 700K 100K" $SCRATCH_MNT/foo \
	| _filter_xfs_io

# Create prealloc extent covering the range [600K, 700K[.
$XFS_IO_PROG -c "falloc 600K 100K" $SCRATCH_MNT/foo

# Write 80K of data to the range [640K, 720K[ using direct IO. This range covers
# both the prealloc extent and the compressed extent. Because there's a
# compressed extent in the range we are writing to, the DIO write code path ends
# up only writing the first 60k of data, which goes to the prealloc extent, and
# then falls back to buffered IO for writing the remaining 20K of data - because
# that remaining data maps to a file range containing a compressed extent.
# When falling back to buffered IO, we used to trigger an assertion when
# releasing reserved space due to bad accounting of the inode's outstanding
# extents counter, which was set to 1 but we ended up decrementing it by 1 twice,
# once through the ordered extent for the 60K of data we wrote using direct IO,
# and once through the main direct IO handler (inode.cbtrfs_direct_IO()) because
# the direct IO write wrote less than 80K of data (60K).
$XFS_IO_PROG -d -c "pwrite -S 0xbb -b 80K 640K 80K" $SCRATCH_MNT/foo \
	| _filter_xfs_io

# Now similar test as above but for very large write operations. This triggers
# special cases for an inode's outstanding extents accounting, as internally
# btrfs logically splits extents into 128Mb units.
$XFS_IO_PROG -f -s \
	-c "pwrite -S 0xaa -b 128M 258M 128M" \
	-c "falloc 0 258M" \
	$SCRATCH_MNT/bar | _filter_xfs_io
$XFS_IO_PROG -d -c "pwrite -S 0xbb -b 256M 3M 256M" $SCRATCH_MNT/bar \
	| _filter_xfs_io

# Now verify the file contents are correct and that they are the same even after
# unmounting and mounting the fs again (or evicting the page cache).
#
# For file foo, all bytes in the range [0, 640K[ must have a value of 0x00, all
# bytes in the range [640K, 720K[ must have a value of 0xbb and all bytes in the
# range [720K, 800K[ must have a value of 0xaa.
#
# For file bar, all bytes in the range [0, 3M[ must havea value of 0x00, all
# bytes in the range [3M, 259M[ must have a value of 0xbb and all bytes in the
# range [259M, 386M[ must have a value of 0xaa.
#
echo "File digests before remounting the file system:"
md5sum $SCRATCH_MNT/foo | _filter_scratch
md5sum $SCRATCH_MNT/bar | _filter_scratch
_scratch_cycle_mount
echo "File digests after remounting the file system:"
md5sum $SCRATCH_MNT/foo | _filter_scratch
md5sum $SCRATCH_MNT/bar | _filter_scratch

status=0
exit