X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=stat.c;h=74c2686c660ca33b76b12e85eefab3a68e933e7c;hb=c749e96814bf3dbaffa6a17fdca2169bf90941e0;hp=552d88dde06797c9098820da224cd0891aab268e;hpb=3aea75b14510301a80744b417ac08840ccfcf5b3;p=fio.git diff --git a/stat.c b/stat.c index 552d88dd..74c2686c 100644 --- a/stat.c +++ b/stat.c @@ -2457,12 +2457,12 @@ int calc_log_samples(void) next = min(td->o.iops_avg_time, td->o.bw_avg_time); continue; } - if (!per_unit_log(td->bw_log)) { + if (td->bw_log && !per_unit_log(td->bw_log)) { tmp = add_bw_samples(td, &now); if (tmp < next) next = tmp; } - if (!per_unit_log(td->iops_log)) { + if (td->iops_log && !per_unit_log(td->iops_log)) { tmp = add_iops_samples(td, &now); if (tmp < next) next = tmp;