The following changes since commit f57a9c59e366aa2f0621aa260bfd5ef5aeb61643: Add terse version output format command line parameter (2011-09-09 21:01:37 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): Fix disk utilization for delayed jobs Merge branch 'master' of ssh://router/data/git/fio fio.c | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) --- Diff of recent changes: diff --git a/fio.c b/fio.c index 4514840..b492889 100644 --- a/fio.c +++ b/fio.c @@ -1502,10 +1502,8 @@ static void run_threads(void) for_each_td(td, i) { print_status_init(td->thread_number - 1); - if (!td->o.create_serialize) { - init_disk_util(td); + if (!td->o.create_serialize) continue; - } /* * do file setup here so it happens sequentially, @@ -1533,8 +1531,6 @@ static void run_threads(void) td_io_close_file(td, f); } } - - init_disk_util(td); } set_genesis_time(); @@ -1573,6 +1569,8 @@ static void run_threads(void) break; } + init_disk_util(td); + /* * Set state to created. Thread will transition * to TD_INITIALIZED when it's done setting up. -- 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