verify: use origina offset for verification
[fio.git] / io_u.h
diff --git a/io_u.h b/io_u.h
index e75993bd863a9f629e136bbcb2cec542377d1a19..311009287403f8254e6d922c9658a72b1f80ae29 100644 (file)
--- a/io_u.h
+++ b/io_u.h
@@ -24,6 +24,7 @@ enum {
        IO_U_F_TRIMMED          = 1 << 5,
        IO_U_F_BARRIER          = 1 << 6,
        IO_U_F_VER_LIST         = 1 << 7,
+       IO_U_F_PRIORITY         = 1 << 8,
 };
 
 /*
@@ -52,7 +53,8 @@ struct io_u {
         * Allocated/set buffer and length
         */
        unsigned long long buflen;
-       unsigned long long offset;
+       unsigned long long offset;      /* is really ->xfer_offset... */
+       unsigned long long verify_offset;       /* is really ->offset */
        void *buf;
 
        /*
@@ -92,7 +94,6 @@ struct io_u {
                struct workqueue_work work;
        };
 
-#ifdef CONFIG_LINUX_BLKZONED
        /*
         * ZBD mode zbd_queue_io callback: called after engine->queue operation
         * to advance a zone write pointer and eventually unlock the I/O zone.
@@ -107,7 +108,6 @@ struct io_u {
         * or commit of an async I/O to unlock the I/O target zone.
         */
        void (*zbd_put_io)(const struct io_u *);
-#endif
 
        /*
         * Callback for io completion
@@ -193,5 +193,7 @@ static inline enum fio_ddir acct_ddir(struct io_u *io_u)
        td_flags_clear((td), &(io_u->flags), (val))
 #define io_u_set(td, io_u, val)                \
        td_flags_set((td), &(io_u)->flags, (val))
+#define io_u_is_prio(io_u)     \
+       (io_u->flags & (unsigned int) IO_U_F_PRIORITY) != 0
 
 #endif