The following changes since commit 0f85dc841d9220f3a0b45d0b104d5277ea962199: Merge branch 'Offload_Segfault_Write_Log' of https://github.com/horshack-dpreview/fio (2023-02-09 09:34:32 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to b65023f3c8849e122b2a223838ae9fdaed994e84: Merge branch 'msg-Modify_QD_Sync_Warning_For_offload' of https://github.com/horshack-dpreview/fio (2023-02-10 11:49:46 -0500) ---------------------------------------------------------------- Horshack (1): Suppress sync engine QD > 1 warning if io_submit_mode is offload Vincent Fu (1): Merge branch 'msg-Modify_QD_Sync_Warning_For_offload' of https://github.com/horshack-dpreview/fio backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index 928e524a..ffd34b36 100644 --- a/backend.c +++ b/backend.c @@ -1796,7 +1796,7 @@ static void *thread_main(void *data) if (td_io_init(td)) goto err; - if (td_ioengine_flagged(td, FIO_SYNCIO) && td->o.iodepth > 1) { + if (td_ioengine_flagged(td, FIO_SYNCIO) && td->o.iodepth > 1 && td->o.io_submit_mode != IO_MODE_OFFLOAD) { log_info("note: both iodepth >= 1 and synchronous I/O engine " "are selected, queue depth will be capped at 1\n"); }