From 34369fb21cc24ce8b81d5b529b21869014391bf0 Mon Sep 17 00:00:00 2001 From: Lu Fengqi Date: Tue, 6 Mar 2018 15:02:31 +0800 Subject: [PATCH] btrfs/004: increase the buffer size of logical-resolve to the maximum value 64K Because of commit e76e13ce8c0b ("fsstress: implement the clonerange/deduperange ioctls"), dedupe makes the number of references to the same extent item increase so much that the default 4K buffer of logical-resolve is no longer sufficient. Signed-off-by: Lu Fengqi Reviewed-by: Filipe Manana Signed-off-by: Eryu Guan --- tests/btrfs/004 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/btrfs/004 b/tests/btrfs/004 index de583cc3..0d2efb91 100755 --- a/tests/btrfs/004 +++ b/tests/btrfs/004 @@ -103,7 +103,7 @@ _btrfs_inspect_addr() expect_addr=$3 expect_inum=$4 file=$5 - cmd="$BTRFS_UTIL_PROG inspect-internal logical-resolve -P $addr $mp" + cmd="$BTRFS_UTIL_PROG inspect-internal logical-resolve -s 65536 -P $addr $mp" echo "# $cmd" >> $seqres.full out=`$cmd` echo "$out" >> $seqres.full -- 2.30.2