Merge branch 'Fix_Bad_Hdr_Rand_Seed_For_Requeued_IO' of https://github.com/horshack...
[fio.git] / io_u.c
diff --git a/io_u.c b/io_u.c
index 0b2754f1e9441f8d0ba5a8ea060ad7760fa76c90..23c4ae2d96a8b18fb9e0c185e0a5864527fb2707 100644 (file)
--- a/io_u.c
+++ b/io_u.c
@@ -984,8 +984,10 @@ static int fill_io_u(struct thread_data *td, struct io_u *io_u)
        offset = io_u->offset;
        if (td->o.zone_mode == ZONE_MODE_ZBD) {
                ret = zbd_adjust_block(td, io_u);
-               if (ret == io_u_eof)
+               if (ret == io_u_eof) {
+                       dprint(FD_IO, "zbd_adjust_block() returned io_u_eof\n");
                        return 1;
+               }
        }
 
        if (io_u->offset + io_u->buflen > io_u->file->real_file_size) {