X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=libfio.c;h=198eaf2eb723f744cbc279cd3dff51a1be64bd00;hb=79eb6c9a17de959d72ee51c601b2764225101282;hp=6faf32a4e918158cc19a7196a28098c93e7bb111;hpb=ec2ea18e87fad6c42d6875cd4ee1bb25ef9b4627;p=fio.git diff --git a/libfio.c b/libfio.c index 6faf32a4..198eaf2e 100644 --- a/libfio.c +++ b/libfio.c @@ -92,6 +92,7 @@ static void reset_io_counters(struct thread_data *td, int all) td->bytes_done[ddir] = 0; td->rate_io_issue_bytes[ddir] = 0; td->rate_next_io_time[ddir] = 0; + td->last_usec[ddir] = 0; } } @@ -103,7 +104,7 @@ static void reset_io_counters(struct thread_data *td, int all) /* * reset file done count if we are to start over */ - if (td->o.time_based || td->o.loops || td->o.do_verify) + if (td->o.time_based || td->loops > 1 || td->o.do_verify) td->nr_done_files = 0; } @@ -139,7 +140,6 @@ void reset_all_stats(struct thread_data *td) td->io_issues[i] = 0; td->ts.total_io_u[i] = 0; td->ts.runtime[i] = 0; - td->rwmix_issues = 0; } set_epoch_time(td, td->o.log_unix_epoch); @@ -155,8 +155,13 @@ void reset_all_stats(struct thread_data *td) void reset_fio_state(void) { + int i; + groupid = 0; thread_number = 0; + cur_segment = 0; + for (i = 0; i < nr_segments; i++) + segments[i].nr_threads = 0; stat_number = 0; done_secs = 0; } @@ -232,7 +237,7 @@ void fio_mark_td_terminate(struct thread_data *td) td->terminate = true; } -void fio_terminate_threads(unsigned int group_id) +void fio_terminate_threads(unsigned int group_id, unsigned int terminate) { struct thread_data *td; pid_t pid = getpid(); @@ -241,7 +246,10 @@ void fio_terminate_threads(unsigned int group_id) dprint(FD_PROCESS, "terminate group_id=%d\n", group_id); for_each_td(td, i) { - if (group_id == TERMINATE_ALL || group_id == td->groupid) { + if ((terminate == TERMINATE_GROUP && group_id == TERMINATE_ALL) || + (terminate == TERMINATE_GROUP && group_id == td->groupid) || + (terminate == TERMINATE_STONEWALL && td->runstate >= TD_RUNNING) || + (terminate == TERMINATE_ALL)) { dprint(FD_PROCESS, "setting terminate on %s/%d\n", td->o.name, (int) td->pid);