The following changes since commit 99955d3d3e290ccb06583a821a8112210e4b332d: backend: do_dry_run(): get_io_u() can return an error pointer (2016-07-29 09:59:38 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 059b61f219b15db434eddc2207b876c6a0bad6c0: backend: do_verify() cleanup (2016-08-01 13:46:17 -0600) ---------------------------------------------------------------- Jens Axboe (1): backend: do_verify() cleanup backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index 8a71490..c3ad831 100644 --- a/backend.c +++ b/backend.c @@ -652,7 +652,7 @@ static void do_verify(struct thread_data *td, uint64_t verify_bytes) break; while ((io_u = get_io_u(td)) != NULL) { - if (IS_ERR(io_u)) { + if (IS_ERR_OR_NULL(io_u)) { io_u = NULL; ret = FIO_Q_BUSY; goto reap; -- 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