xfs/127: work with 64k block size

With reflink feature enabled, we require atleast 500MiB of
disk space to create a filesystem with 64k block size. Hence this commit
sets the size of the scratch filesystem to 512MiB.

Signed-off-by: Chandan Rajendra <chandan@linux.vnet.ibm.com>
Tested-by: Zorro Lang <zlang@redhat.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Chandan Rajendra
2018-09-24 20:49:27 +05:30
committed by Eryu Guan
parent 204974ec07
commit d06c2700b2
+1 -1
View File
@@ -34,7 +34,7 @@ _require_no_large_scratch_dev
_require_cp_reflink _require_cp_reflink
echo "Format and mount" echo "Format and mount"
_scratch_mkfs_sized $((2 * 4096 * 4096)) > $seqres.full 2>&1 _scratch_mkfs_sized $((512 * 1024 * 1024)) > $seqres.full 2>&1
_scratch_mount >> $seqres.full 2>&1 _scratch_mount >> $seqres.full 2>&1
testdir=$SCRATCH_MNT/test-$seq testdir=$SCRATCH_MNT/test-$seq