X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.c;h=61fd098958704473113dfa5cb6a76c795ce7f8a7;hp=355c9d4ee1b6bb0c044e921f68467f739f2ce38e;hb=437c9b71527b14a8e872c03cd821179eba351474;hpb=97b601c1ef3520e87e26fe2eea2446076ae1eab3 diff --git a/fio.c b/fio.c index 355c9d4e..61fd0989 100644 --- a/fio.c +++ b/fio.c @@ -26,12 +26,11 @@ #include #include #include -#include +#include #include #include #include #include -#include #include #include "fio.h" @@ -48,6 +47,7 @@ int temp_stall_ts; static volatile int startup_sem; static volatile int fio_abort; +static int exit_value; struct io_log *agg_io_log[2]; @@ -383,7 +383,7 @@ static void do_io(struct thread_data *td) td_set_runstate(td, TD_RUNNING); - while (td->this_io_bytes[td->ddir] < td->io_size) { + while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) { struct timespec *timeout; int min_evts = 0; struct io_u *io_u; @@ -413,7 +413,6 @@ requeue: io_u->xfer_buf += ret; goto requeue; } else { - td_verror(td, io_u->error); put_io_u(td, io_u); break; } @@ -690,8 +689,10 @@ static void *thread_main(void *data) if (td_io_init(td)) goto err; - if (td->exec_prerun) - system(td->exec_prerun); + if (td->exec_prerun) { + if (system(td->exec_prerun) < 0) + goto err; + } fio_gettime(&td->epoch, NULL); getrusage(RUSAGE_SELF, &td->ru_start); @@ -746,8 +747,10 @@ static void *thread_main(void *data) finish_log(td, td->clat_log, "clat"); if (td->write_iolog_file) write_iolog_close(td); - if (td->exec_postrun) - system(td->exec_postrun); + if (td->exec_postrun) { + if (system(td->exec_postrun) < 0) + log_err("fio: postrun %s failed\n", td->exec_postrun); + } if (exitall_on_terminate) terminate_threads(td->groupid, 0); @@ -809,6 +812,9 @@ static void reap_threads(int *nr_running, int *t_rate, int *m_rate) continue; } + if (td->error) + exit_value++; + td_set_runstate(td, TD_REAPED); if (td->use_thread) { @@ -1003,6 +1009,13 @@ int main(int argc, char *argv[]) { long ps; + /* + * We need locale for number printing, if it isn't set then just + * go with the US format. + */ + if (!getenv("LC_NUMERIC")) + setlocale(LC_NUMERIC, "en_US"); + if (parse_options(argc, argv)) return 1; @@ -1036,5 +1049,5 @@ int main(int argc, char *argv[]) } } - return 0; + return exit_value; }