bdevperf: properly handle the next run of perform_tests

Change-Id: I65060a3a3f254ef541ab2f65995f168f649fbf69
Signed-off-by: GangCao <gang.cao@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9821
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
GangCao 2021-10-11 17:12:32 -04:00 committed by Jim Harris
parent d4827a681b
commit b0a52577a2

View File

@ -1887,6 +1887,9 @@ rpc_perform_tests_cb(void)
/* Reset g_run_rc to 0 for the next test run. */
g_run_rc = 0;
/* Reset g_stats to 0 for the next test run. */
memset(&g_stats, 0, sizeof(g_stats));
}
static void
@ -1905,7 +1908,12 @@ rpc_perform_tests(struct spdk_jsonrpc_request *request, const struct spdk_json_v
}
g_request = request;
bdevperf_construct_job_configs();
/* Only construct job configs at the first test run. */
if (TAILQ_EMPTY(&job_config_list)) {
bdevperf_construct_job_configs();
} else {
bdevperf_construct_jobs();
}
}
SPDK_RPC_REGISTER("perform_tests", rpc_perform_tests, SPDK_RPC_RUNTIME)