From: Jens Axboe Date: Tue, 18 Jan 2011 12:41:39 +0000 (-0700) Subject: Multiple jobs and verify will not fail if do_verify=0 X-Git-Tag: fio-1.50-rc4~10 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=996936f995c47f4744a49e05419e7d4c0364c64e Multiple jobs and verify will not fail if do_verify=0 Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index bce28466..15adf385 100644 --- a/init.c +++ b/init.c @@ -381,7 +381,7 @@ static int fixup_options(struct thread_data *td) "pre-populated the file\n"); ret = warnings_fatal; } - if (td_write(td) && o->numjobs > 1) { + if (td_write(td) && o->do_verify && o->numjobs > 1) { log_info("Multiple writers may overwrite blocks that " "belong to other jobs. This can cause " "verification failures.\n");