From: Dave Chinner <dchinner@xxxxxxxxxx> The test does not do what it says on the packet - the mkfs output is not actually passed to the mkfs filter, so it doesn't know what inode size mkfs actually used. Hence CHUNK_SIZE ends up being calculated as 0, and that means it enters an endless loop because offset never decreases. Fix it by adding the missing line continuation. Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx> --- tests/xfs/076 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xfs/076 b/tests/xfs/076 index e315a067c..2ea6459b0 100755 --- a/tests/xfs/076 +++ b/tests/xfs/076 @@ -68,7 +68,7 @@ _require_xfs_sparse_inodes # bitmap consuming all the free space in our small data device. unset SCRATCH_RTDEV -_scratch_mkfs "-d size=96m -m crc=1 -i sparse" | tee -a $seqres.full | +_scratch_mkfs "-d size=96m -m crc=1 -i sparse" | tee -a $seqres.full | \ _filter_mkfs > /dev/null 2> $tmp.mkfs . $tmp.mkfs # for isize -- 2.45.2