From: Yingxin Cheng Date: Thu, 25 May 2023 03:53:43 +0000 (+0800) Subject: crimson/tools/perf_async_msgr: print configurations X-Git-Tag: v18.2.1~129^2~16 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3780586e5766791261319943481c1655a58ebef1;p=ceph-ci.git crimson/tools/perf_async_msgr: print configurations Signed-off-by: Yingxin Cheng (cherry picked from commit 45586840ea56c32e6d4b7c55305b6500fae72415) --- 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); }