The following changes since commit 2857c34bd39fcd67c489a8e2b19d9455032bad0f: t/io_uring: clarify polled support is fs + device (2019-05-08 11:56:05 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 8066f6b6177acba17f61fecb9f04d04767fb1a96: t/io_uring: improve EOPNOTSUPP message (2019-05-09 09:56:29 -0600) ---------------------------------------------------------------- Jens Axboe (1): t/io_uring: improve EOPNOTSUPP message t/io_uring.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- Diff of recent changes: diff --git a/t/io_uring.c b/t/io_uring.c index 208b58a5..62dee805 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -264,8 +264,7 @@ static int reap_events(struct submitter *s) if (cqe->res != BS) { printf("io: unexpected ret=%d\n", cqe->res); if (polled && cqe->res == -EOPNOTSUPP) - printf("Your filesystem/device doesn't " - "support polled IO\n"); + printf("Your filesystem/driver/kernel doesn't support polled IO\n"); return -1; } }