The following changes since commit 40d0b84220f7c0ff9c3874656db7f0f8cb6a85e6: t/zbd: Fix write target zones counting in test case #31 (2021-06-08 15:15:58 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to dd4620b7f9171edaa10955c4826454a05af27c85: io_uring: drop redundant IO_MODE_OFFLOAD check (2021-06-10 16:40:49 -0600) ---------------------------------------------------------------- Stefan Hajnoczi (1): io_uring: drop redundant IO_MODE_OFFLOAD check engines/io_uring.c | 6 ------ 1 file changed, 6 deletions(-) --- Diff of recent changes: diff --git a/engines/io_uring.c b/engines/io_uring.c index b962e804..9c091e37 100644 --- a/engines/io_uring.c +++ b/engines/io_uring.c @@ -728,12 +728,6 @@ static int fio_ioring_init(struct thread_data *td) struct ioring_data *ld; struct thread_options *to = &td->o; - if (to->io_submit_mode == IO_MODE_OFFLOAD) { - log_err("fio: io_submit_mode=offload is not compatible (or " - "useful) with io_uring\n"); - return 1; - } - /* sqthread submission requires registered files */ if (o->sqpoll_thread) o->registerfiles = 1;