The following changes since commit ae7e055f755e77dfa71ae9040250ce8eec238721:

  crc/test: a few more cleanups and code unifications (2014-07-25 15:15:46 
+0200)

are available in the git repository at:

  git://git.kernel.dk/fio.git master

for you to fetch changes up to b7f5c00db0d450aff09b35301bedf16e26e25d3a:

  verify: turn off numberio verification for meta and time_based (2014-08-07 
15:27:31 -0600)

----------------------------------------------------------------
Jens Axboe (1):
      verify: turn off numberio verification for meta and time_based

 verify.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

---

Diff of recent changes:

diff --git a/verify.c b/verify.c
index 3d7c5de..35d8969 100644
--- a/verify.c
+++ b/verify.c
@@ -411,7 +411,8 @@ static int verify_io_u_meta(struct verify_header *hdr, 
struct vcont *vc)
         * state of numberio, that would have been written to each block
         * in a previous run of fio, has been reached.
         */
-       if ((td_write(td) || td_rw(td)) && (td_min_bs(td) == td_max_bs(td)))
+       if ((td_write(td) || td_rw(td)) && (td_min_bs(td) == td_max_bs(td)) &&
+           !td->o.time_based)
                if (!td->o.verify_only || td->o.loops == 0)
                        if (vh->numberio != io_u->numberio)
                                ret = EILSEQ;
--
To unsubscribe from this list: send the line "unsubscribe fio" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to