X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fnull.c;h=f434550300e7a3d454c7561b808d1cfe24372f1c;hp=85d6847e18388eee2822f7b7cf38b7d230b5ec27;hb=a1c58075279454a91ec43366846b93e8dcf9753c;hpb=e7d2e61694c62b90a2fb84c012b4edcc1973d72c diff --git a/engines/null.c b/engines/null.c index 85d6847e..f4345503 100644 --- a/engines/null.c +++ b/engines/null.c @@ -46,6 +46,7 @@ static int fio_null_commit(struct thread_data *td) struct null_data *nd = td->io_ops->data; if (!nd->events) { + io_u_mark_submit(td, nd->queued); nd->events = nd->queued; nd->queued = 0; } @@ -82,7 +83,6 @@ static void fio_null_cleanup(struct thread_data *td) if (nd->io_us) free(nd->io_us); free(nd); - td->io_ops->data = NULL; } }