@@ -731,6 +731,29 @@ __page_pool_put_page(struct page_pool *pool, struct page *page,
/* Page found as candidate for recycling */
return page;
}
+
+ if (page_is_page_pool_iov(page)) {
+ /* With devmem TCP and ppiovs, we can't release pages if the
+ * refcount is > 1. This is because the net stack holds
+ * 2 references:
+ * - 1 for the skb, and
+ * - 1 for the user until they call SO_DEVMEM_DONTNEED.
+ * Releasing pages for elevated refcounts completely disables
+ * page_pool recycling. Instead, simply don't release pages and
+ * the next call to napi_pp_put_page() via SO_DEVMEM_DONTNEED
+ * will consider the page again for recycling. As a result,
+ * devmem TCP incompatible with drivers doing refcnt based
+ * recycling unless those drivers:
+ *
+ * - don't mark skb_mark_for_recycle()
+ * - are sure to release the last reference with
+ * page_pool_put_full_page() to consider the page for
+ * page_pool recycling.
+ */
+ page_pool_page_put_many(page, 1);
+ return NULL;
+ }
+
/* Fallback/non-XDP mode: API user have elevated refcnt.
*
* Many drivers split up the page into fragments, and some
Currently the page_pool behavior is that a page is considered for recycling only once, the first time __page_pool_put_page() is called on it. This works because in practice the net stack only holds 1 reference to the skb frags. In that case, the page_pool recycling works as expected, as the skb frags will have 1 reference on the pages from the net stack when __page_pool_put_page() is called (if the driver is not holding extra references for recycling), and so the page will be recycled. However, this is not compatible with devmem TCP. For devmem TCP, the net stack holds 2 references for each frag, 1 reference is part of the SKB, and the second reference is for the user holding the frag until they call SO_DEVMEM_DONTNEED. This causes a bug in the page_pool recycling where, when the skb is freed, the reference count goes from 2->1, the page_pool sees a pending reference, releases the page, and so no devmem iovs get recycled. To fix this, don't release iovs on elevated refcount. Signed-off-by: Mina Almasry <almasrymina@google.com> --- net/core/page_pool.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+)