From 1925a091d8413127d4f6813792848004488f99d6 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 10 May 2011 00:44:47 -0700 Subject: [PATCH] Only report read throughput from pump bench Generally they are the same anyway... --- test/benchmark-pump.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/benchmark-pump.c b/test/benchmark-pump.c index 95c7a9e2..92524b20 100644 --- a/test/benchmark-pump.c +++ b/test/benchmark-pump.c @@ -88,10 +88,8 @@ static void show_stats(oio_req_t *req, int64_t skew, int status) { oio_update_time(); int64_t diff = oio_now() - start_time; - LOGF("pump_read_%d: %.1f gbit/s\n", read_sockets, + LOGF("pump_%d: %.1f gbit/s\n", read_sockets, gbit(nrecv_total, diff)); - LOGF("pump_write_%d: %.1f gbit/s\n", read_sockets, - gbit(nsent_total, diff)); exit(0); }