summaryrefslogtreecommitdiff
path: root/tests/xfs/079
blob: dd5dbd35cb266aac53f6172f5933e6d09d350e14 (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
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2015 Red Hat, Inc. All Rights Reserved.
#
# FS QA Test No. 079
#
# Regression test for a bug in the log record checksum mechanism of XFS. Log
# records are checksummed during recovery and a warning or mount failure occurs
# on checksum verification failure. XFS had a bug where the checksum mechanism
# verified different parts of a record depending on the current log buffer size.
# This caused spurious checksum failures when a filesystem is recovered using a
# different log buffer size from when the filesystem crashed.
#
# Test that log recovery succeeds with a different log buffer size from when the
# filesystem crashed.
#
. ./common/preamble
_begin_fstest shutdown auto log quick

# Override the default cleanup function.
_cleanup()
{
	cd /
	rm -f $tmp.*
	$KILLALL_PROG -9 fsstress > /dev/null 2>&1
	wait > /dev/null 2>&1
}

# Import common functions.
. ./common/log

# real QA test starts here

# Modify as appropriate.
_supported_fs xfs
_require_scratch
_require_v2log
_require_command "$KILLALL_PROG" killall

echo "Silence is golden."

dmesg -c > /dev/null

_scratch_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
_scratch_mount "-o logbsize=32k"

# Run a workload to dirty the log, wait a bit and shutdown the fs.
$FSSTRESS_PROG -d $SCRATCH_MNT -p 4 -n 99999999 >> $seqres.full 2>&1 &
sleep 10
_scratch_shutdown -f
wait

# Remount with a different log buffer size. Going from 32k to 64k increases the
# log record extended header count, as the log record header can only handle 32k
# of space.
_scratch_unmount
_try_scratch_mount "-o logbsize=64k"

# The mount may not fail on v4 filesystems. Check for CRC mismatch warning
# messages to detect failure in this case.
dmesg -c | grep XFS | grep CRC

# success, all done
status=0
exit