From: Tomohiro Kusumi Date: Tue, 28 Mar 2017 20:02:54 +0000 (+0300) Subject: Drop redundant "ignore invalidate option" message from 21c1b29e X-Git-Tag: fio-2.19~11 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=49d719fc52d3d2164c55a16193cb2880b515b46f Drop redundant "ignore invalidate option" message from 21c1b29e The message added by 21c1b29e ("fio: ignore invalidate option...") is correct in the sense that it resets invalidate= option, however since invalidation is enabled by default, this message appears whenever pre_read=1 is set (unless invalidate=0 is also explicitly set at the same time, which is unliekly). This is annoying and shouldn't have been added. 21c1b29e updating HOWTO was enough, sorry. Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 6af6c450..2f9433b4 100644 --- a/init.c +++ b/init.c @@ -765,11 +765,8 @@ static int fixup_options(struct thread_data *td) } if (o->pre_read) { - if (o->invalidate_cache) { - log_info("fio: ignore invalidate option for %s\n", - o->name); + if (o->invalidate_cache) o->invalidate_cache = 0; - } if (td_ioengine_flagged(td, FIO_PIPEIO)) { log_info("fio: cannot pre-read files with an IO engine" " that isn't seekable. Pre-read disabled.\n");