The following changes since commit a3edaf76b30880c3bf4455c30614ce88cdbbe071: Use log_err() in the io engines (2010-09-26 10:53:40 +0900) are available in the git repository at: git://git.kernel.dk/fio.git master Adam DeBellins (1): Fix bad setting of td->o.ddir_seq_nr in add_job() init.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index cc4037a..b84d0ad 100644 --- a/init.c +++ b/init.c @@ -561,7 +561,7 @@ static int add_job(struct thread_data *td, const char *jobname, int job_add_num) td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX; td->ts.lat_stat[0].min_val = td->ts.lat_stat[1].min_val = ULONG_MAX; td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX; - td->ddir_seq_nr = td->o.ddir_seq_nr + 1; + td->ddir_seq_nr = td->o.ddir_seq_nr; if ((td->o.stonewall || td->o.new_group) && prev_group_jobs) { prev_group_jobs = 0; -- 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