Thread (8 messages) 8 messages, 4 authors, 2023-07-18

RE: [PATCH net-next] net: mana: Add page pool for RX buffers

From: Haiyang Zhang <haiyangz@microsoft.com>
Date: 2023-07-17 18:28:43
Also in: bpf, linux-hyperv, linux-rdma, lkml

-----Original Message-----
From: Jesper Dangaard Brouer <redacted>
Sent: Friday, July 14, 2023 9:13 AM
To: Haiyang Zhang <haiyangz@microsoft.com>; Jesper Dangaard Brouer
[off-list ref]; Jakub Kicinski [off-list ref]
Cc: brouer@redhat.com; linux-hyperv@vger.kernel.org; netdev@vger.kernel.org;
Dexuan Cui [off-list ref]; KY Srinivasan [off-list ref]; Paul
Rosswurm [off-list ref]; olaf@aepfle.de; vkuznets@redhat.com;
davem@davemloft.net; wei.liu@kernel.org; edumazet@google.com;
pabeni@redhat.com; leon@kernel.org; Long Li [off-list ref];
ssengar@linux.microsoft.com; linux-rdma@vger.kernel.org;
daniel@iogearbox.net; john.fastabend@gmail.com; bpf@vger.kernel.org;
ast@kernel.org; Ajay Sharma [off-list ref]; hawk@kernel.org;
tglx@linutronix.de; shradhagupta@linux.microsoft.com; linux-
kernel@vger.kernel.org; Ilias Apalodimas [off-list ref]
Subject: Re: [PATCH net-next] net: mana: Add page pool for RX buffers

[You don't often get email from jbrouer@redhat.com. Learn why this is
important at https://aka.ms/LearnAboutSenderIdentification ]

On 14/07/2023 14.51, Haiyang Zhang wrote:
quoted
quoted
-----Original Message-----
From: Jesper Dangaard Brouer <redacted>
On 14/07/2023 05.53, Jakub Kicinski wrote:
quoted
On Thu, 13 Jul 2023 14:48:45 +0000 Haiyang Zhang wrote:
quoted
Add page pool for RX buffers for faster buffer cycle and reduce CPU
usage.

Get an extra ref count of a page after allocation, so after upper
layers put the page, it's still referenced by the pool. We can reuse
it as RX buffer without alloc a new page.
Please use the real page_pool API from include/net/page_pool.h
We've moved past every driver reinventing the wheel, sorry.
+1

Quoting[1]: Documentation/networking/page_pool.rst

   Basic use involves replacing alloc_pages() calls with the
page_pool_alloc_pages() call.
   Drivers should use page_pool_dev_alloc_pages() replacing
dev_alloc_pages().
Thank Jakub and Jesper for the reviews.
I'm aware of the page_pool.rst doc, and actually tried it before this
patch, but I got lower perf. If I understand correctly, we should call
page_pool_release_page() before passing the SKB to napi_gro_receive().

I found the page_pool_dev_alloc_pages() goes through the slow path,
because the page_pool_release_page() let the page leave the pool.

Do we have to call page_pool_release_page() before passing the SKB
to napi_gro_receive()? Any better way to recycle the pages from the
upper layer of non-XDP case?
Today SKB "upper layers" can recycle page_pool backed packet data/page.

Just use skb_mark_for_recycle(skb), then you don't need
page_pool_release_page().
Will do. Thanks a lot!

- Haiyang
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help