Add structure definition for io_zctap_ifq for use by lower level networking hooks. Signed-off-by: Jonathan Lemon <jonathan.lemon@xxxxxxxxx> --- include/linux/io_uring_types.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h index 677a25d44d7f..680fbf1f34e7 100644 --- a/include/linux/io_uring_types.h +++ b/include/linux/io_uring_types.h @@ -323,6 +323,7 @@ struct io_ring_ctx { struct io_mapped_ubuf *dummy_ubuf; struct io_rsrc_data *file_data; struct io_rsrc_data *buf_data; + struct xarray zctap_ifq_xa; struct delayed_work rsrc_put_work; struct llist_head rsrc_put_llist; @@ -578,4 +579,12 @@ struct io_overflow_cqe { struct io_uring_cqe cqe; }; +struct io_zctap_ifq { + struct net_device *dev; + struct io_ring_ctx *ctx; + u16 queue_id; + u16 id; + u16 fill_bgid; +}; + #endif -- 2.30.2