From 49d719fc52d3d2164c55a16193cb2880b515b46f Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Tue, 28 Mar 2017 23:02:54 +0300 Subject: [PATCH] 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 --- init.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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"); -- 2.25.1