From: Xiubo Li Date: Mon, 7 Mar 2022 12:14:34 +0000 (+0800) Subject: Disable outputing the responseTime for each request issued X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1a59821c1da226a85038abb9f8c1af81443d189b;p=ffsb.git Disable outputing the responseTime for each request issued Fixes: https://tracker.ceph.com/issues/52438 Signed-off-by: Xiubo Li --- diff --git a/ffsb_stats.c b/ffsb_stats.c index e9276f6..db43b28 100644 --- a/ffsb_stats.c +++ b/ffsb_stats.c @@ -231,6 +231,7 @@ void ffsb_statsd_print(ffsb_statsd_t *fsd) } overall_calls += fsd->num_values[i]; } +#if 0 printf("\nDiscrete overall System Call Latency statistics in millisecs\n" "=====\n"); printf("\nOverall Calls: %lu\n=====\nValues[ms]:", (unsigned long)overall_calls); uint64_t j; @@ -243,6 +244,7 @@ void ffsb_statsd_print(ffsb_statsd_t *fsd) printf("\n%05f", (float)fsd->values[i][j] / 1000.0f); } } +#endif } #if 0 /* Testing */