From 43121e8693122c29b570a6bac9f535a3275806cf Mon Sep 17 00:00:00 2001 From: Konrad Sztyber Date: Mon, 30 Jan 2023 15:31:50 +0100 Subject: [PATCH] test/zcopy: disable traces in subsystem_add_ns loop This loop produces a LOT of logs, which aren't very useful, so silence them to reduce the clutter in the logs. Signed-off-by: Konrad Sztyber Change-Id: I5032c2c5bc309f8b29455349adf7063c7e9d50cc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16648 Reviewed-by: Jim Harris Tested-by: SPDK CI Jenkins Reviewed-by: Michal Berger Reviewed-by: Tomasz Zawadzki --- test/nvmf/target/zcopy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/nvmf/target/zcopy.sh b/test/nvmf/target/zcopy.sh index cb1a28db1..011b73a78 100755 --- a/test/nvmf/target/zcopy.sh +++ b/test/nvmf/target/zcopy.sh @@ -38,11 +38,13 @@ $rootdir/build/examples/bdevperf --json <(gen_nvmf_target_json) \ -t 5 -q 128 -w randrw -M 50 -o 8192 & perfpid=$! +xtrace_disable while kill -0 $perfpid; do # Add the same namespace again. It'll fail, but will also pause/resume the subsystem and # the namespace forcing the IO requests to be queued/resubmitted. $rpc_py nvmf_subsystem_add_ns nqn.2016-06.io.spdk:cnode1 malloc0 -n 1 &> /dev/null || : done +xtrace_restore wait $perfpid