From: Jens Axboe Date: Fri, 30 May 2008 20:07:49 +0000 (+0200) Subject: Add dprint() to io_u requeue X-Git-Tag: fio-1.21-rc4~22 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=465221b0121f5cf70585d7338c6448ac4b251257;hp=2992b059b8f54ac91e723a8bde629b4d8fed513e Add dprint() to io_u requeue Signed-off-by: Jens Axboe --- diff --git a/io_u.c b/io_u.c index 04900ee1..e4e16931 100644 --- a/io_u.c +++ b/io_u.c @@ -350,6 +350,8 @@ void requeue_io_u(struct thread_data *td, struct io_u **io_u) { struct io_u *__io_u = *io_u; + dprint(FD_IO, "requeue %p\n", __io_u); + __io_u->flags |= IO_U_F_FREE; if ((__io_u->flags & IO_U_F_FLIGHT) && (__io_u->ddir != DDIR_SYNC)) td->io_issues[__io_u->ddir]--;