From 859f127da2ee6d49faa41cafd4ed362aa526e4a0 Mon Sep 17 00:00:00 2001 From: Josef Bacik Date: Fri, 21 Jun 2013 20:31:10 +0000 Subject: [PATCH] xfstests: make fs for 274 larger Btrfs will default to mixed block groups for 1 gigabyte file systems and smaller, which means data and metadata share the same area. This makes generic/274 fail for us because we cannot reserve enough metadata space to do our writes. Bumping the scratch fs up to 2 gigabytes allows us to do our normal metadata/data separation and allows us to pass this test. Thanks, Signed-off-by: Josef Bacik Reviewed-by: Ben Myers Signed-off-by: Rich Johnston --- tests/generic/274 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/generic/274 b/tests/generic/274 index da45fab0..7c4887f4 100755 --- a/tests/generic/274 +++ b/tests/generic/274 @@ -57,7 +57,7 @@ echo "------------------------------" rm -f $seqres.full umount $SCRATCH_DEV 2>/dev/null -_scratch_mkfs_sized $((1 * 1024 * 1024 * 1024)) >>$seqres.full 2>&1 +_scratch_mkfs_sized $((2 * 1024 * 1024 * 1024)) >>$seqres.full 2>&1 _scratch_mount # Create a 4k file and Allocate 4M past EOF on that file -- 2.39.5