]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/tools/perf_async_msgr: print configurations
authorYingxin Cheng <yingxin.cheng@intel.com>
Thu, 25 May 2023 03:53:43 +0000 (11:53 +0800)
committerMatan Breizman <mbreizma@redhat.com>
Tue, 17 Oct 2023 16:18:41 +0000 (16:18 +0000)
Signed-off-by: Yingxin Cheng <yingxin.cheng@intel.com>
(cherry picked from commit 45586840ea56c32e6d4b7c55305b6500fae72415)

src/crimson/tools/perf_async_msgr.cc

index 007de1e8a21918eb2b04135215010ae58f0991f2..38cc84fbb84e18af6a654de5af6fc8637712aa4d 100644 (file)
@@ -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);
 }