From: Darrick J. Wong <djwong@xxxxxxxxxx> For each XFS_SCRUB_TYPE_* that looks at inode and data/attr/cow fork metadata, create a test that runs that repairer in the foreground and fsstress in the background. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- tests/xfs/807 | 37 +++++++++++++++++++++++++++++++++++++ tests/xfs/807.out | 2 ++ tests/xfs/808 | 39 +++++++++++++++++++++++++++++++++++++++ tests/xfs/808.out | 2 ++ tests/xfs/846 | 39 +++++++++++++++++++++++++++++++++++++++ tests/xfs/846.out | 2 ++ 6 files changed, 121 insertions(+) create mode 100755 tests/xfs/807 create mode 100644 tests/xfs/807.out create mode 100755 tests/xfs/808 create mode 100644 tests/xfs/808.out create mode 100755 tests/xfs/846 create mode 100644 tests/xfs/846.out diff --git a/tests/xfs/807 b/tests/xfs/807 new file mode 100755 index 0000000000..e32a37057d --- /dev/null +++ b/tests/xfs/807 @@ -0,0 +1,37 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022 Oracle. Inc. All Rights Reserved. +# +# FS QA Test No. 807 +# +# Race fsstress and data fork repair for a while to see if we crash or livelock. +# +. ./common/preamble +_begin_fstest online_repair dangerous_fsstress_repair + +_cleanup() { + _scratch_xfs_stress_scrub_cleanup &> /dev/null + cd / + rm -r -f $tmp.* +} +_register_cleanup "_cleanup" BUS + +# Import common functions. +. ./common/filter +. ./common/fuzzy +. ./common/inject +. ./common/xfs + +# real QA test starts here +_supported_fs xfs +_require_scratch +_require_xfs_stress_online_repair + +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount +_scratch_xfs_stress_online_repair -s "repair bmapbtd" -t "%datafile%" + +# success, all done +echo Silence is golden +status=0 +exit diff --git a/tests/xfs/807.out b/tests/xfs/807.out new file mode 100644 index 0000000000..3752a5f715 --- /dev/null +++ b/tests/xfs/807.out @@ -0,0 +1,2 @@ +QA output created by 807 +Silence is golden diff --git a/tests/xfs/808 b/tests/xfs/808 new file mode 100755 index 0000000000..378b606427 --- /dev/null +++ b/tests/xfs/808 @@ -0,0 +1,39 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022 Oracle. Inc. All Rights Reserved. +# +# FS QA Test No. 808 +# +# Race fsstress and attr fork repair for a while to see if we crash or livelock. +# +. ./common/preamble +_begin_fstest online_repair dangerous_fsstress_repair + +_cleanup() { + _scratch_xfs_stress_scrub_cleanup &> /dev/null + cd / + rm -r -f $tmp.* +} +_register_cleanup "_cleanup" BUS + +# Import common functions. +. ./common/filter +. ./common/fuzzy +. ./common/inject +. ./common/xfs +. ./common/attr + +# real QA test starts here +_supported_fs xfs +_require_scratch +_require_attrs +_require_xfs_stress_online_repair + +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount +_scratch_xfs_stress_online_repair -x 'xattr' -s "repair bmapbta" -t "%attrfile%" + +# success, all done +echo Silence is golden +status=0 +exit diff --git a/tests/xfs/808.out b/tests/xfs/808.out new file mode 100644 index 0000000000..8825342849 --- /dev/null +++ b/tests/xfs/808.out @@ -0,0 +1,2 @@ +QA output created by 808 +Silence is golden diff --git a/tests/xfs/846 b/tests/xfs/846 new file mode 100755 index 0000000000..8388a22730 --- /dev/null +++ b/tests/xfs/846 @@ -0,0 +1,39 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022 Oracle. Inc. All Rights Reserved. +# +# FS QA Test No. 846 +# +# Race fsstress and CoW fork repair for a while to see if we crash or livelock. +# +. ./common/preamble +_begin_fstest online_repair dangerous_fsstress_repair + +_cleanup() { + _scratch_xfs_stress_scrub_cleanup &> /dev/null + cd / + rm -r -f $tmp.* +} +_register_cleanup "_cleanup" BUS + +# Import common functions. +. ./common/filter +. ./common/fuzzy +. ./common/inject +. ./common/xfs +. ./common/reflink + +# real QA test starts here +_supported_fs xfs +_require_scratch +_require_xfs_stress_online_repair + +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount +_require_xfs_has_feature "$SCRATCH_MNT" reflink +_scratch_xfs_stress_online_repair -s "repair bmapbtc" -t "%cowfile%" + +# success, all done +echo Silence is golden +status=0 +exit diff --git a/tests/xfs/846.out b/tests/xfs/846.out new file mode 100644 index 0000000000..c88a3035c3 --- /dev/null +++ b/tests/xfs/846.out @@ -0,0 +1,2 @@ +QA output created by 846 +Silence is golden