The following changes since commit ff56a4e2e0a87e4e3b1cc1e74547d55b295967a6: travis: don't enable rbd (2016-08-03 10:18:42 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 5fd31680d0370c6b71ccfa456ade211477af81d6: Revert "filesetup: ensure that we catch a file flagged for extend" (2016-08-04 19:41:09 -0600) ---------------------------------------------------------------- Jens Axboe (1): Revert "filesetup: ensure that we catch a file flagged for extend" filesetup.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) --- Diff of recent changes: diff --git a/filesetup.c b/filesetup.c index f32d874..1ecdda6 100644 --- a/filesetup.c +++ b/filesetup.c @@ -900,12 +900,11 @@ int setup_files(struct thread_data *td) if (f->filetype == FIO_TYPE_FILE && (f->io_size + f->file_offset) > f->real_file_size && !(td->io_ops->flags & FIO_DISKLESSIO)) { - if (!o->create_on_open) + if (!o->create_on_open) { + need_extend++; extend_size += (f->io_size + f->file_offset); - else + } else f->real_file_size = f->io_size + f->file_offset; - - need_extend++; fio_file_set_extend(f); } } -- 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