The following changes since commit 946e42764c6cc536d42e55acbf2fa8bc424124bd: stat: move final \n of terse output to the end (2012-03-23 19:22:21 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Enhance the reaped status display HOWTO | 7 +++++-- eta.c | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/HOWTO b/HOWTO index 5622349..62c70cb 100644 --- a/HOWTO +++ b/HOWTO @@ -1339,13 +1339,16 @@ I Thread initialized, waiting. F Running, currently waiting for fsync() V Running, doing verification of written data. E Thread exited, not reaped by main thread yet. -_ Thread reaped. +_ Thread reaped, or +X Thread reaped, exited with an error. The other values are fairly self explanatory - number of threads currently running and doing io, rate of io since last check (read speed listed first, then write speed), and the estimated completion percentage and time for the running group. It's impossible to estimate runtime of -the following groups (if any). +the following groups (if any). Note that the string is displayed in order, +so it's possible to tell which of the jobs are currently doing what. The +first character is the first job defined in the job file, and so forth. When fio is done (or interrupted by ctrl-c), it will show the data for each thread, group of threads, and disks in that order. For each data diff --git a/eta.c b/eta.c index 6118d1a..4ad6762 100644 --- a/eta.c +++ b/eta.c @@ -18,7 +18,10 @@ static void check_str_update(struct thread_data *td) switch (td->runstate) { case TD_REAPED: - c = '_'; + if (td->error) + c = 'X'; + else + c = '_'; break; case TD_EXITED: c = 'E'; -- 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