From: Jens Axboe Date: Thu, 14 Dec 2017 17:58:03 +0000 (-0700) Subject: client: respect --eta=never for networked connections X-Git-Tag: fio-3.3~8 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=5610bcd8f4bd106a551fcba9c2f88c89ac709794 client: respect --eta=never for networked connections Signed-off-by: Jens Axboe --- 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));