From 20abd130a8daa423adc0b62aa4aaca1b03549eab Mon Sep 17 00:00:00 2001 From: Qu Wenruo Date: Mon, 11 Jul 2016 15:27:17 -0700 Subject: [PATCH] btrfs/079: Fix wrong value passed to available space check Wrong value is passed to _require_fs_space, which should be in unit of kilobyte(1024), but passed in unit of gigabyte(1024^3). Reviewed-by: David Sterba Signed-off-by: Qu Wenruo Signed-off-by: Eryu Guan --- tests/btrfs/079 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/btrfs/079 b/tests/btrfs/079 index 6aee3a37..ed4eb727 100755 --- a/tests/btrfs/079 +++ b/tests/btrfs/079 @@ -72,7 +72,7 @@ rm -f $seqres.full _scratch_mkfs >>$seqres.full 2>&1 _scratch_mount -_require_fs_space $SCRATCH_MNT $(($filesize / 1024 / 1024 / 1024)) +_require_fs_space $SCRATCH_MNT $(($filesize / 1024)) $XFS_IO_PROG -f -c "falloc 0 $filesize" $testfile dd_work() { -- 2.47.3