From 5610bcd8f4bd106a551fcba9c2f88c89ac709794 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 14 Dec 2017 10:58:03 -0700 Subject: [PATCH 1/1] client: respect --eta=never for networked connections Signed-off-by: Jens Axboe --- client.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client.c b/client.c index 2b136a0f..82e12855 100644 --- a/client.c +++ b/client.c @@ -1834,6 +1834,9 @@ static void request_client_etas(struct client_ops *ops) struct client_eta *eta; int skipped = 0; + if (eta_print == FIO_ETA_NEVER) + return; + dprint(FD_NET, "client: request eta (%d)\n", nr_clients); eta = calloc(1, sizeof(*eta) + __THREAD_RUNSTR_SZ(REAL_MAX_JOBS)); -- 2.25.1