The following changes since commit 9576f613be6dd7217a31c27742cb9aae09a77bf8: Windows fio fixes (2012-08-17 15:10:04 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): eta: make CR= display more easy to understand eta.c | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) --- Diff of recent changes: diff --git a/eta.c b/eta.c index 9114595..552845d 100644 --- a/eta.c +++ b/eta.c @@ -285,11 +285,18 @@ int calc_thread_status(struct jobs_eta *je, int force) || td->runstate == TD_FSYNCING || td->runstate == TD_PRE_READING) { je->nr_running++; - je->t_rate += td->o.rate[0] + td->o.rate[1]; - je->m_rate += td->o.ratemin[0] + td->o.ratemin[1]; - je->t_iops += td->o.rate_iops[0] + td->o.rate_iops[1]; - je->m_iops += td->o.rate_iops_min[0] + - td->o.rate_iops_min[1]; + if (td_read(td)) { + je->t_rate += td->o.rate[DDIR_READ]; + je->t_iops += td->o.rate_iops[DDIR_READ]; + je->m_rate += td->o.ratemin[DDIR_READ]; + je->m_iops += td->o.rate_iops_min[DDIR_READ]; + } + if (td_write(td)) { + je->t_rate += td->o.rate[DDIR_WRITE]; + je->t_iops += td->o.rate_iops[DDIR_WRITE]; + je->m_rate += td->o.ratemin[DDIR_WRITE]; + je->m_iops += td->o.rate_iops_min[DDIR_WRITE]; + } je->files_open += td->nr_open_files; } else if (td->runstate == TD_RAMP) { je->nr_running++; -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html