mbox series

[net-next,0/4] add frag page support in page pool

Message ID 1628161526-29076-1-git-send-email-linyunsheng@huawei.com
Headers show
Series add frag page support in page pool | expand

Message

Yunsheng Lin Aug. 5, 2021, 11:05 a.m. UTC
This patchset adds frag page support in page pool and
enable skb's page frag recycling based on page pool in
hns3 drvier.

V1:
1. avoid atomic_long_read() in case of freeing or draining
   page frag, and drop RFC tag.

RFC v6:
1. Disable frag page support in system 32-bit arch and
   64-bit DMA.

RFC v5:
1. Rename dma_addr[0] to pp_frag_count and adjust codes
   according to the rename.

RFC v4:
1. Use the dma_addr[1] to store bias.
2. Default to a pagecnt_bias of PAGE_SIZE - 1.
3. other minor comment suggested by Alexander.

RFC v3:
1. Implement the semantic of "page recycling only wait for the
   page pool user instead of all user of a page"
2. Support the frag allocation of different sizes
3. Merge patch 4 & 5 to one patch as it does not make sense to
   use page_pool_dev_alloc_pages() API directly with elevated
   refcnt.
4. other minor comment suggested by Alexander.

RFC v2:
1. Split patch 1 to more reviewable one.
2. Repurpose the lower 12 bits of the dma address to store the
   pagecnt_bias as suggested by Alexander.
3. support recycling to pool->alloc for elevated refcnt case
   too.


Yunsheng Lin (4):
  page_pool: keep pp info as long as page pool owns the page
  page_pool: add interface to manipulate frag count in page pool
  page_pool: add frag page recycling support in page pool
  net: hns3: support skb's frag page recycling based on page pool

 drivers/net/ethernet/hisilicon/Kconfig          |   1 +
 drivers/net/ethernet/hisilicon/hns3/hns3_enet.c |  79 +++++++++++++++--
 drivers/net/ethernet/hisilicon/hns3/hns3_enet.h |   3 +
 drivers/net/ethernet/marvell/mvneta.c           |   6 +-
 drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c |   2 +-
 drivers/net/ethernet/ti/cpsw.c                  |   2 +-
 drivers/net/ethernet/ti/cpsw_new.c              |   2 +-
 include/linux/mm_types.h                        |  18 ++--
 include/linux/skbuff.h                          |   4 +-
 include/net/page_pool.h                         |  68 +++++++++++---
 net/core/page_pool.c                            | 112 +++++++++++++++++++++++-
 11 files changed, 258 insertions(+), 39 deletions(-)

Comments

Jakub Kicinski Aug. 6, 2021, 1:20 a.m. UTC | #1
On Thu, 5 Aug 2021 19:05:26 +0800 Yunsheng Lin wrote:
> This patch adds skb's frag page recycling support based on

> the frag page support in page pool.

> 

> The performance improves above 10~20% for single thread iperf

> TCP flow with IOMMU disabled when iperf server and irq/NAPI

> have a different CPU.

> 

> The performance improves about 135%(14Gbit to 33Gbit) for single

> thread iperf TCP flow IOMMU is in strict mode and iperf server

> shares the same cpu with irq/NAPI.

> 

> Signed-off-by: Yunsheng Lin <linyunsheng@huawei.com>


This patch does not apply cleanly to net-next, please rebase 
if you're targeting that tree.
Yunsheng Lin Aug. 6, 2021, 1:37 a.m. UTC | #2
On 2021/8/6 9:20, Jakub Kicinski wrote:
> On Thu, 5 Aug 2021 19:05:26 +0800 Yunsheng Lin wrote:

>> This patch adds skb's frag page recycling support based on

>> the frag page support in page pool.

>>

>> The performance improves above 10~20% for single thread iperf

>> TCP flow with IOMMU disabled when iperf server and irq/NAPI

>> have a different CPU.

>>

>> The performance improves about 135%(14Gbit to 33Gbit) for single

>> thread iperf TCP flow IOMMU is in strict mode and iperf server

>> shares the same cpu with irq/NAPI.

>>

>> Signed-off-by: Yunsheng Lin <linyunsheng@huawei.com>

> 

> This patch does not apply cleanly to net-next, please rebase 

> if you're targeting that tree.


It seems I forgot to rebase the net-next tree before doing
"git format-patch", thanks for mentioning that.

> .

>