The following changes since commit 4eef23f627d103d7092b4141bd6b0c8f95309ee9: howto: fix zonemode formatting (2024-04-02 11:10:58 -0400) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 8bcd4cb42931996575cb4430f3d630810f213434: Revert "ioengines: Make td_io_queue print log_err when got error " (2024-04-15 12:26:56 -0600) ---------------------------------------------------------------- Jens Axboe (1): Revert "ioengines: Make td_io_queue print log_err when got error " ioengines.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/ioengines.c b/ioengines.c index 5dd4355d..87cc2286 100644 --- a/ioengines.c +++ b/ioengines.c @@ -413,7 +413,7 @@ enum fio_q_status td_io_queue(struct thread_data *td, struct io_u *io_u) if (io_u->error == EINVAL && td->io_issues[io_u->ddir & 1] == 1 && td->o.odirect) { - log_err("fio: first direct IO errored. File system may not " + log_info("fio: first direct IO errored. File system may not " "support direct IO, or iomem_align= is bad, or " "invalid block size. Try setting direct=0.\n"); } @@ -421,7 +421,7 @@ enum fio_q_status td_io_queue(struct thread_data *td, struct io_u *io_u) if (zbd_unaligned_write(io_u->error) && td->io_issues[io_u->ddir & 1] == 1 && td->o.zone_mode != ZONE_MODE_ZBD) { - log_err("fio: first I/O failed. If %s is a zoned block device, consider --zonemode=zbd\n", + log_info("fio: first I/O failed. If %s is a zoned block device, consider --zonemode=zbd\n", io_u->file->file_name); }