From: Jens Axboe Date: Sun, 27 Mar 2011 18:53:39 +0000 (+0200) Subject: Get rid of mixed rw and verify warning X-Git-Tag: fio-1.52~10 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=b590a7330e0970a5c5cc58ba40542b217af76023 Get rid of mixed rw and verify warning Should workd fine. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 65d573a3..327a3c5e 100644 --- a/init.c +++ b/init.c @@ -376,12 +376,6 @@ static int fixup_options(struct thread_data *td) o->size = -1ULL; if (o->verify != VERIFY_NONE) { - if (td_rw(td)) { - log_info("fio: mixed read/write workload with verify. " - "May not work as expected, unless you " - "pre-populated the file\n"); - ret = warnings_fatal; - } 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 "