diff mbox series

generic/361: disable xfs metadata io error retries

Message ID 20200624035254.GC7600@magnolia (mailing list archive)
State New, archived
Headers show
Series generic/361: disable xfs metadata io error retries | expand

Commit Message

Darrick J. Wong June 24, 2020, 3:52 a.m. UTC
From: Darrick J. Wong <darrick.wong@oracle.com>

This test examines the behavior of xfs when the underlying filesystem is
a sparse image on the scratch filesystem when the scratch fs is about to
run out of space.  Unfortunately, the test assumes that the scratch fs
will ENOSPC on the large data write.  It's possible that metadata
writeback will hit ENOSPC instead, and if we do, the test will hang
forever while xfs retries the write.  Make sure we're set up to fail
fast so that we don't hang the test appliance.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 tests/generic/361 |    5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/tests/generic/361 b/tests/generic/361
index e28aaf46..403bbe41 100755
--- a/tests/generic/361
+++ b/tests/generic/361
@@ -54,6 +54,11 @@  mkdir -p $fs_mnt
 loop_dev=$(_create_loop_device $fs_img)
 _mkfs_dev $loop_dev
 _mount $loop_dev $fs_mnt
+if [ "$FSTYP" = "xfs" ]; then
+	# Turn off all XFS metadata IO error retries
+	dname=$(_short_dev $loop_dev)
+	echo 0 | tee /sys/fs/xfs/$dname/error/*/*/* > /dev/null
+fi
 $XFS_IO_PROG -fc "pwrite 0 520m" $fs_mnt/testfile >>$seqres.full 2>&1
 
 # remount should not hang