new file mode 100644
@@ -0,0 +1,74 @@
+#ifndef _DATA_POOL_H
+#define _DATA_POOL_H
+
+#include <linux/io_uring.h>
+#include <linux/io_uring_types.h>
+#include <linux/mm_types.h>
+#include <linux/netdevice.h>
+#include <net/page_pool/helpers.h>
+
+struct data_pool {
+ struct page_pool *page_pool;
+ struct io_zc_rx_ifq *zc_ifq;
+ struct ubuf_info *zc_uarg;
+};
+
+static inline struct page *data_pool_alloc_page(struct data_pool *dp)
+{
+ if (dp->zc_ifq) {
+ struct io_zc_rx_buf *buf;
+
+ buf = io_zc_rx_get_buf(dp->zc_ifq);
+ if (!buf)
+ return NULL;
+ return buf->page;
+ } else {
+ return page_pool_dev_alloc_pages(dp->page_pool);
+ }
+}
+
+static inline void data_pool_fragment_page(struct data_pool *dp,
+ struct page *page,
+ unsigned long bias)
+{
+ if (dp->zc_ifq) {
+ struct io_zc_rx_buf *buf;
+
+ buf = io_zc_rx_buf_from_page(dp->zc_ifq, page);
+ atomic_set(&buf->refcount, bias);
+ } else {
+ page_pool_fragment_page(page, bias);
+ }
+}
+
+static inline void data_pool_put_page(struct data_pool *dp, struct page *page)
+{
+ if (dp->zc_ifq) {
+ struct io_zc_rx_buf *buf;
+
+ buf = io_zc_rx_buf_from_page(dp->zc_ifq, page);
+ if (!buf)
+ page_pool_recycle_direct(dp->page_pool, page);
+ else
+ io_zc_rx_put_buf(dp->zc_ifq, buf);
+ } else {
+ WARN_ON_ONCE(page->pp_magic != PP_SIGNATURE);
+
+ page_pool_recycle_direct(dp->page_pool, page);
+ }
+}
+
+static inline dma_addr_t data_pool_get_dma_addr(struct data_pool *dp,
+ struct page *page)
+{
+ if (dp->zc_ifq) {
+ struct io_zc_rx_buf *buf;
+
+ buf = io_zc_rx_buf_from_page(dp->zc_ifq, page);
+ return io_zc_rx_buf_dma(buf);
+ } else {
+ return page_pool_get_dma_addr(page);
+ }
+}
+
+#endif