From d5b4ae1c58f49d3d665faadd0e2eddcef9aadc68 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 10 Jan 2019 14:28:10 -0700 Subject: Update to newer API - Fixed buffers are now available through io_uring_register() - Various thread/wq options are now dead and automatic instead - sqe->index is now sqe->buf_index - Fixed buffers require flag, not separate opcode Signed-off-by: Jens Axboe --- src/io_uring.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/io_uring.c') diff --git a/src/io_uring.c b/src/io_uring.c index d9c1511..bf79b9f 100644 --- a/src/io_uring.c +++ b/src/io_uring.c @@ -189,12 +189,11 @@ err: * contains the necessary information to read/write to the rings. */ int io_uring_queue_init(unsigned entries, struct io_uring_params *p, - struct iovec *iovecs, unsigned nr_iovecs, struct io_uring *ring) { int fd, ret; - fd = io_uring_setup(entries, iovecs, nr_iovecs, p); + fd = io_uring_setup(entries, p); if (fd < 0) return fd; -- cgit