817e91b7ce
$ time ./test/lvol/lvol2.sh Without rpc daemon (before): real 0m52.195s user 1m29.316s sys 0m7.660s With rpc daemon (now): real 0m12.452s user 0m13.505s sys 0m3.798s Note we only have about a half of lvol tests ported to bash atm, so this time difference would only grow. Change-Id: I28ec0b92f19e0c7fd48392a72f32535c1106b8be Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1058 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
MALLOC_SIZE_MB=128
|
|
MALLOC_BS=512
|
|
AIO_SIZE_MB=400
|
|
AIO_BS=4096
|
|
LVS_DEFAULT_CLUSTER_SIZE_MB=4
|
|
LVS_DEFAULT_CLUSTER_SIZE=$(( LVS_DEFAULT_CLUSTER_SIZE_MB * 1024 * 1024 ))
|
|
# reserve some MBs for lvolstore metadata
|
|
LVS_DEFAULT_CAPACITY_MB=$(( MALLOC_SIZE_MB - LVS_DEFAULT_CLUSTER_SIZE_MB ))
|
|
LVS_DEFAULT_CAPACITY=$(( LVS_DEFAULT_CAPACITY_MB * 1024 * 1024 ))
|
|
|
|
function check_leftover_devices() {
|
|
leftover_bdevs=$(rpc_cmd bdev_get_bdevs)
|
|
[ "$(jq length <<< "$leftover_bdevs")" == "0" ]
|
|
leftover_lvs=$(rpc_cmd bdev_lvol_get_lvstores)
|
|
[ "$(jq length <<< "$leftover_lvs")" == "0" ]
|
|
}
|
|
|
|
function round_down() {
|
|
local CLUSTER_SIZE_MB=$LVS_DEFAULT_CLUSTER_SIZE_MB
|
|
if [ -n "$2" ]; then
|
|
CLUSTER_SIZE_MB=$2
|
|
fi
|
|
echo $(( $1 / CLUSTER_SIZE_MB * CLUSTER_SIZE_MB ))
|
|
}
|
|
|
|
function run_fio_test() {
|
|
local file=$1
|
|
local offset=$2
|
|
local size=$3
|
|
local rw=$4
|
|
local pattern=$5
|
|
local extra_params=$6
|
|
|
|
local pattern_template="" fio_template=""
|
|
if [[ -n "$pattern" ]]; then
|
|
pattern_template="--do_verify=1 --verify=pattern --verify_pattern=$pattern --verify_state_save=0"
|
|
fi
|
|
|
|
fio_template="fio --name=fio_test --filename=$file --offset=$offset --size=$size --rw=$rw --direct=1 $extra_params $pattern_template"
|
|
$fio_template
|
|
}
|