From: Sage Weil Date: Mon, 30 Jun 2014 14:05:04 +0000 (-0700) Subject: qa/workunits/suites/fsx.sh: don't use zero range X-Git-Tag: v0.67.10~29 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=583e6e3ef7f28bf34fe038e8a2391f9325a69adf;p=ceph.git qa/workunits/suites/fsx.sh: don't use zero range Zero range is not supported by cephfs. Fixes: #8542 Signed-off-by: Sage Weil (cherry picked from commit 2dec8a810060f65d022c06e82090b4aa5ccec0cb) --- diff --git a/qa/workunits/suites/fsx.sh b/qa/workunits/suites/fsx.sh index 32d5b63c239..c6f419a0f53 100755 --- a/qa/workunits/suites/fsx.sh +++ b/qa/workunits/suites/fsx.sh @@ -5,6 +5,8 @@ set -e wget http://ceph.com/qa/fsx.c gcc fsx.c -o fsx -./fsx 1MB -N 50000 -p 10000 -l 1048576 -./fsx 10MB -N 50000 -p 10000 -l 10485760 -./fsx 100MB -N 50000 -p 10000 -l 104857600 +OPTIONS="-z" # don't use zero range calls; not supported by cephfs + +./fsx $OPTIONS 1MB -N 50000 -p 10000 -l 1048576 +./fsx $OPTIONS 10MB -N 50000 -p 10000 -l 10485760 +./fsx $OPTIONS 100MB -N 50000 -p 10000 -l 104857600