From: Jens Axboe Date: Mon, 17 Jan 2011 23:51:46 +0000 (-0700) Subject: Correct check to o->numjobs > 1 for verify warning X-Git-Tag: fio-1.50-rc4~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=a6294434450db2728f1253ec6b6d2f57ef864b94;p=fio.git Correct check to o->numjobs > 1 for verify warning Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 2d467171..dcb01934 100644 --- a/init.c +++ b/init.c @@ -379,7 +379,7 @@ static int fixup_options(struct thread_data *td) "pre-populated the file\n"); ret = warnings_fatal; } - if (td_write(td) && o->numjobs) { + if (td_write(td) && o->numjobs > 1) { log_info("Multiple writers may overwrite blocks that " "belong to other jobs. This can cause " "verification failures.\n");