From 59974983bfc0688fffaec744d8183721f5a5bb80 Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Fri, 4 Nov 2011 10:38:03 +0800 Subject: [PATCH] 083 make variable filesize as size in bytes The first argument of _scratch_mkfs_sized() should be file system size in bytes, so '100m' is not a valid number, and the 'expr' expression in _scratch_mkfs_sized() complains 'non-numeric argument' about it. Signed-off-by: Eryu Guan Signed-off-by: Christoph Hellwig --- 083 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/083 b/083 index 441284e4..e0670b9e 100755 --- a/083 +++ b/083 @@ -91,7 +91,7 @@ workout() echo "*** test out-of-space handling for random write operations" -filesize=100m +filesize=`expr 100 \* 1024 \* 1024` agcount=6 numprocs=15 numops=1500