From 7ef2b052956d9ac8ceb71d171a6944f724ca7f4a Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Thu, 9 Jan 2020 12:29:30 +0100 Subject: [PATCH] test/nvme-perf: use core mask option with bdevperf Previously it only ran on single core. Change-Id: I1eb16c56cb733bc327b9e1ab7a63ae8ada3cda68 Signed-off-by: Karol Latecki Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/479820 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto Reviewed-by: Tomasz Zawadzki --- test/nvme/perf/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nvme/perf/common.sh b/test/nvme/perf/common.sh index 8ecaffcb5..48dbd2b29 100755 --- a/test/nvme/perf/common.sh +++ b/test/nvme/perf/common.sh @@ -310,7 +310,7 @@ function run_nvme_fio(){ function run_bdevperf(){ echo "** Running bdevperf test, this can take a while, depending on the run-time setting." - $BDEVPERF_DIR/bdevperf -c $BASE_DIR/bdev.conf -q $IODEPTH -o $BLK_SIZE -w $RW -M $MIX -t $RUNTIME + $BDEVPERF_DIR/bdevperf -c $BASE_DIR/bdev.conf -q $IODEPTH -o $BLK_SIZE -w $RW -M $MIX -t $RUNTIME -m "[$CPUS_ALLOWED]" sleep 1 }