From 2857c34bd39fcd67c489a8e2b19d9455032bad0f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 8 May 2019 11:56:05 -0600 Subject: [PATCH] t/io_uring: clarify polled support is fs + device Signed-off-by: Jens Axboe --- t/io_uring.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } } -- 2.25.1