From 733223acd6540cc38d7e0b1235f74b42d643b138 Mon Sep 17 00:00:00 2001 From: Stephen Bates Date: Thu, 13 Jun 2019 03:04:32 -0600 Subject: example/io_uring-test.c: Fix iovecs increment This example misses an increment though the iovecs array. This causes the same buffer to be filled from the block device every time. It would be good to fix this since it is one of the first examples a new-comer to io_uring is exposed too. Signed-off-by: Stephen Bates Signed-off-by: Jens Axboe --- examples/io_uring-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/io_uring-test.c b/examples/io_uring-test.c index bbac3a7..0b975ad 100644 --- a/examples/io_uring-test.c +++ b/examples/io_uring-test.c @@ -56,6 +56,7 @@ int main(int argc, char *argv[]) break; io_uring_prep_readv(sqe, fd, &iovecs[i], 1, offset); offset += iovecs[i].iov_len; + i++; } while (1); ret = io_uring_submit(&ring); -- cgit