From: Jens Axboe Date: Wed, 8 May 2019 17:56:05 +0000 (-0600) Subject: t/io_uring: clarify polled support is fs + device X-Git-Tag: fio-3.14~8 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2857c34bd39fcd67c489a8e2b19d9455032bad0f;p=fio.git t/io_uring: clarify polled support is fs + device Signed-off-by: Jens Axboe --- diff --git a/t/io_uring.c b/t/io_uring.c index 79a92311..208b58a5 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -264,7 +264,8 @@ 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 doesn't support poll\n"); + printf("Your filesystem/device doesn't " + "support polled IO\n"); return -1; } }