On 6/3/24 6:04 PM, Gabriel Krisman Bertazi wrote: > Signed-off-by: Gabriel Krisman Bertazi <krisman@xxxxxxx> Finally got around to these, as the kernel support has landed... > diff --git a/src/include/liburing.h b/src/include/liburing.h > index 0a02364..818e27c 100644 > --- a/src/include/liburing.h > +++ b/src/include/liburing.h > @@ -669,6 +669,13 @@ IOURINGINLINE void io_uring_prep_connect(struct io_uring_sqe *sqe, int fd, > io_uring_prep_rw(IORING_OP_CONNECT, sqe, fd, addr, 0, addrlen); > } > > +IOURINGINLINE void io_uring_prep_bind(struct io_uring_sqe *sqe, int fd, > + struct sockaddr *addr, > + socklen_t addrlen) > +{ > + io_uring_prep_rw(IORING_OP_BIND, sqe, fd, addr, 0, addrlen); > +} This needs an ffi and liburing-ffi.map entry as well. Ditto for the next patch. -- Jens Axboe