This patch adds tests for bdev histograms using bdevperf. Patch also adds bdev_rpc dependency in bdevrpc Makefile to enable histograms RPC calls in bdevperf. Signed-off-by: Piotr Pelplinski <piotr.pelplinski@intel.com> Change-Id: I1e0e94933936864df441e49f0016f9aa7705a7e2 Reviewed-on: https://review.gerrithub.io/c/437640 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
66 lines
1.9 KiB
Bash
Executable File
66 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SYSTEM=`uname -s`
|
|
if [ $SYSTEM = "FreeBSD" ] ; then
|
|
echo "blob_io_wait.sh cannot run on FreeBSD currently."
|
|
exit 0
|
|
fi
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $rootdir/test/nvmf/common.sh
|
|
rpc_py="python $rootdir/scripts/rpc.py"
|
|
set -e
|
|
|
|
timing_enter blob_bdev_io_wait
|
|
|
|
truncate -s 64M $testdir/aio.bdev
|
|
|
|
$rootdir/test/app/bdev_svc/bdev_svc &
|
|
bdev_svc_pid=$!
|
|
|
|
trap "killprocess $bdev_svc_pid; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
waitforlisten $bdev_svc_pid
|
|
$rpc_py construct_aio_bdev $testdir/aio.bdev aio0 4096
|
|
$rpc_py construct_lvol_store aio0 lvs0
|
|
$rpc_py construct_lvol_bdev -l lvs0 lvol0 32
|
|
|
|
killprocess $bdev_svc_pid
|
|
|
|
# Minimal number of bdev io pool (128) and cache (1)
|
|
echo "[Bdev]" > $testdir/bdevperf.conf
|
|
echo "BdevIoPoolSize 128" >> $testdir/bdevperf.conf
|
|
echo "BdevIoCacheSize 1" >> $testdir/bdevperf.conf
|
|
echo "[AIO]" >> $testdir/bdevperf.conf
|
|
echo "AIO $testdir/aio.bdev aio0 4096" >> $testdir/bdevperf.conf
|
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf -c $testdir/bdevperf.conf -q 128 -o 4096 -w write -t 5 -r /var/tmp/spdk.sock &
|
|
bdev_perf_pid=$!
|
|
waitforlisten $bdev_perf_pid
|
|
$rpc_py enable_bdev_histogram aio0 -e
|
|
sleep 2
|
|
$rpc_py get_bdev_histogram aio0 | $rootdir/scripts/histogram.py
|
|
$rpc_py enable_bdev_histogram aio0 -d
|
|
wait $bdev_perf_pid
|
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf -c $testdir/bdevperf.conf -q 128 -o 4096 -w read -t 5 -r /var/tmp/spdk.sock &
|
|
bdev_perf_pid=$!
|
|
waitforlisten $bdev_perf_pid
|
|
$rpc_py enable_bdev_histogram aio0 -e
|
|
sleep 2
|
|
$rpc_py get_bdev_histogram aio0 | $rootdir/scripts/histogram.py
|
|
$rpc_py enable_bdev_histogram aio0 -d
|
|
wait $bdev_perf_pid
|
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf -c $testdir/bdevperf.conf -q 128 -o 4096 -w unmap -t 1
|
|
|
|
sync
|
|
rm -rf $testdir/bdevperf.conf
|
|
rm -rf $testdir/aio.bdev
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
report_test_completion "blob_io_wait"
|
|
timing_exit bdev_io_wait
|