The following changes since commit 52c0cea392321740cba72f65b9cf5d2102658edf: Catch more places where the callback should just return on parse/check (2013-09-06 10:07:37 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Fix broken requeue of io_us io_u.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/io_u.c b/io_u.c index c50a17d..7df57aa 100644 --- a/io_u.c +++ b/io_u.c @@ -1136,10 +1136,9 @@ struct io_u *__get_io_u(struct thread_data *td) again: if (!io_u_rempty(&td->io_u_requeues)) io_u = io_u_rpop(&td->io_u_requeues); - else if (!io_u_qempty(&td->io_u_freelist)) + else if (!io_u_qempty(&td->io_u_freelist)) { io_u = io_u_qpop(&td->io_u_freelist); - if (io_u) { io_u->buflen = 0; io_u->resid = 0; io_u->file = NULL; -- 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