From b7f5c00db0d450aff09b35301bedf16e26e25d3a Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 7 Aug 2014 15:27:31 -0600 Subject: [PATCH] verify: turn off numberio verification for meta and time_based Will only work for the first iteration, then fail miserably. Signed-off-by: Jens Axboe --- verify.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/verify.c b/verify.c index 3d7c5de9..35d89696 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; -- 2.25.1