From f227e2b61ffb099019e760b0c6bbacb17fa848c4 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 16 Mar 2017 14:33:14 -0600 Subject: [PATCH] filesetup: remove bogus message on forcing file size This trigger all the time when size isn't being set and we just query it, it's pointless and confusing to log. Kill it with fire. Fixes: c4aa2d08 ("Fixup for a minor 0 byte file size case") Signed-off-by: Jens Axboe --- filesetup.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/filesetup.c b/filesetup.c index f2e47b12..c9f2b5ff 100644 --- a/filesetup.c +++ b/filesetup.c @@ -942,9 +942,6 @@ int setup_files(struct thread_data *td) if (f->file_offset > f->real_file_size) goto err_offset; f->io_size = f->real_file_size - f->file_offset; - log_info("fio: forcing file %s size to %llu\n", - f->file_name, - (unsigned long long)f->io_size); if (!f->io_size) log_info("fio: file %s may be ignored\n", f->file_name); -- 2.25.1