From 45586840ea56c32e6d4b7c55305b6500fae72415 Mon Sep 17 00:00:00 2001 From: Yingxin Cheng Date: Thu, 25 May 2023 11:53:43 +0800 Subject: [PATCH] crimson/tools/perf_async_msgr: print configurations Signed-off-by: Yingxin Cheng --- src/crimson/tools/perf_async_msgr.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/crimson/tools/perf_async_msgr.cc b/src/crimson/tools/perf_async_msgr.cc index 007de1e8a21..38cc84fbb84 100644 --- a/src/crimson/tools/perf_async_msgr.cc +++ b/src/crimson/tools/perf_async_msgr.cc @@ -141,5 +141,11 @@ int main(int argc, char** argv) cct->_conf.set_val("ms_async_op_threads", fmt::format("{}", worker_threads)); + std::cout << "server[" << addr + << "](bs=" << bs + << ", crc_enabled=" << crc_enabled + << ", worker_threads=" << worker_threads + << std::endl; + run(cct.get(), target_addr, bs); } -- 2.39.5