The following changes since commit e6fe02651641fc64d2fa4fcfe9b1013b2947d11b: Merge branch 'master' of https://github.com/dyniusz/fio (2017-10-03 11:19:26 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to f7c9bfd57232c6e11623d741be340d32f796c726: backend: don't complain about no IO done for create_only=1 (2017-10-06 11:41:47 -0600) ---------------------------------------------------------------- Jens Axboe (1): backend: don't complain about no IO done for create_only=1 backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index b1995ef..ba6f585 100644 --- a/backend.c +++ b/backend.c @@ -1833,7 +1833,7 @@ static void *thread_main(void *data) * (Are we not missing other flags that can be ignored ?) */ if ((td->o.size || td->o.io_size) && !ddir_rw_sum(bytes_done) && - !did_some_io && + !did_some_io && !td->o.create_only && !(td_ioengine_flagged(td, FIO_NOIO) || td_ioengine_flagged(td, FIO_DISKLESSIO))) log_err("%s: No I/O performed by %s, " -- 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