X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=libfio.c;h=ed5906d4c2d3d80d70ca5f806662c216224e8544;hb=1ae82d673cf5e704b93da56655f6189f43a1592e;hp=7348b16491ff266cadb7ba46d75e503984ccbc95;hpb=64402a8a7b158c1b7a778b5f2508e625a6fc6317;p=fio.git diff --git a/libfio.c b/libfio.c index 7348b164..ed5906d4 100644 --- a/libfio.c +++ b/libfio.c @@ -104,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; } @@ -156,8 +156,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; }