The following changes since commit bd93e34b86e8f7c0fb6b2cf15866431a4dc81067: Fixup wrong enum used for __check_min_rate() (2011-06-03 21:15:50 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Steven Lang (1): Fix fill_device with queue depth higher than 1 fio.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/fio.c b/fio.c index 34956e9..5ea1a2c 100644 --- a/fio.c +++ b/fio.c @@ -760,8 +760,11 @@ sync_done: struct fio_file *f; i = td->cur_depth; - if (i) + if (i) { ret = io_u_queued_complete(td, i, NULL); + if (td->o.fill_device && td->error == ENOSPC) + td->error = 0; + } if (should_fsync(td) && td->o.end_fsync) { td_set_runstate(td, TD_FSYNCING); -- 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