2016-08-15 08:56:26 -04:00
|
|
|
#! /bin/bash
|
2018-06-09 11:35:42 +10:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
# Copyright (c) 2016 Red Hat, Inc. All Rights Reserved.
|
|
|
|
|
#
|
2016-08-15 08:56:26 -04:00
|
|
|
# FS QA Test No. 388
|
|
|
|
|
#
|
|
|
|
|
# Test XFS log recovery ordering on v5 superblock filesystems. XFS had a problem
|
|
|
|
|
# where it would incorrectly replay older modifications from the log over more
|
|
|
|
|
# recent versions of metadata due to failure to update metadata LSNs during log
|
|
|
|
|
# recovery. This could result in false positive reports of corruption during log
|
|
|
|
|
# recovery and permanent mount failure.
|
|
|
|
|
#
|
|
|
|
|
# To test this situation, run frequent shutdowns immediately after log recovery.
|
|
|
|
|
# Ensure that log recovery does not recover stale modifications and cause
|
|
|
|
|
# spurious corruption reports and/or mount failures.
|
|
|
|
|
#
|
|
|
|
|
seq=`basename $0`
|
|
|
|
|
seqres=$RESULT_DIR/$seq
|
|
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
|
|
|
|
cd /
|
|
|
|
|
rm -f $tmp.*
|
|
|
|
|
$KILLALL_PROG -9 fsstress > /dev/null 2>&1
|
|
|
|
|
_scratch_unmount > /dev/null 2>&1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
|
. ./common/rc
|
|
|
|
|
|
|
|
|
|
# Modify as appropriate.
|
|
|
|
|
_supported_fs generic
|
|
|
|
|
_supported_os Linux
|
|
|
|
|
|
|
|
|
|
_require_scratch
|
2017-12-15 15:47:33 +08:00
|
|
|
_require_local_device $SCRATCH_DEV
|
2016-08-15 08:56:26 -04:00
|
|
|
_require_scratch_shutdown
|
|
|
|
|
_require_command "$KILLALL_PROG" "killall"
|
|
|
|
|
|
|
|
|
|
rm -f $seqres.full
|
|
|
|
|
|
|
|
|
|
echo "Silence is golden."
|
|
|
|
|
|
|
|
|
|
_scratch_mkfs >> $seqres.full 2>&1
|
2017-03-06 19:45:57 +08:00
|
|
|
_require_metadata_journaling $SCRATCH_DEV
|
2018-02-07 17:31:36 +08:00
|
|
|
_scratch_mount
|
2016-08-15 08:56:26 -04:00
|
|
|
|
2017-11-28 17:09:04 -08:00
|
|
|
for i in $(seq 1 $((50 * TIME_FACTOR)) ); do
|
2017-02-05 01:53:34 -05:00
|
|
|
($FSSTRESS_PROG $FSSTRESS_AVOID -d $SCRATCH_MNT -n 999999 -p 4 >> $seqres.full &) \
|
2016-08-15 08:56:26 -04:00
|
|
|
> /dev/null 2>&1
|
|
|
|
|
|
|
|
|
|
# purposely include 0 second sleeps to test shutdown immediately after
|
|
|
|
|
# recovery
|
|
|
|
|
sleep $((RANDOM % 3))
|
2017-12-15 15:47:33 +08:00
|
|
|
_scratch_shutdown
|
2016-08-15 08:56:26 -04:00
|
|
|
|
|
|
|
|
ps -e | grep fsstress > /dev/null 2>&1
|
|
|
|
|
while [ $? -eq 0 ]; do
|
|
|
|
|
$KILLALL_PROG -9 fsstress > /dev/null 2>&1
|
|
|
|
|
wait > /dev/null 2>&1
|
|
|
|
|
ps -e | grep fsstress > /dev/null 2>&1
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# quit if mount fails so we don't shutdown the host fs
|
|
|
|
|
_scratch_cycle_mount || _fail "cycle mount failed"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|