From: Yanteng Si <si.yanteng@linux.dev>
To: Furong Xu <0x1207@gmail.com>,
netdev@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Cc: Alexander Lobakin <aleksander.lobakin@intel.com>,
Joe Damato <jdamato@fastly.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
xfr@outlook.com
Subject: Re: [PATCH net-next v3 1/4] net: stmmac: Switch to zero-copy in non-XDP RX path
Date: Thu, 16 Jan 2025 10:05:37 +0800 [thread overview]
Message-ID: <1985a09f-f851-48a6-af6c-07e21611b514@linux.dev> (raw)
In-Reply-To: <bd7aabf4d9b6696885922ed4bef8fc95142d3004.1736910454.git.0x1207@gmail.com>
在 2025/1/15 11:27, Furong Xu 写道:
> Avoid memcpy in non-XDP RX path by marking all allocated SKBs to
> be recycled in the upper network stack.
>
> This patch brings ~11.5% driver performance improvement in a TCP RX
> throughput test with iPerf tool on a single isolated Cortex-A65 CPU
> core, from 2.18 Gbits/sec increased to 2.43 Gbits/sec.
>
> Signed-off-by: Furong Xu <0x1207@gmail.com>
> Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Reviewed-by: Yanteng Si <si.yanteng@linux.dev>
Thanks,
Yanteng
> ---
> drivers/net/ethernet/stmicro/stmmac/stmmac.h | 1 +
> .../net/ethernet/stmicro/stmmac/stmmac_main.c | 26 ++++++++++++-------
> 2 files changed, 18 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac.h b/drivers/net/ethernet/stmicro/stmmac/stmmac.h
> index e8dbce20129c..f05cae103d83 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac.h
> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac.h
> @@ -126,6 +126,7 @@ struct stmmac_rx_queue {
> unsigned int cur_rx;
> unsigned int dirty_rx;
> unsigned int buf_alloc_num;
> + unsigned int napi_skb_frag_size;
> dma_addr_t dma_rx_phy;
> u32 rx_tail_addr;
> unsigned int state_saved;
> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> index acd6994c1764..1d98a5e8c98c 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> @@ -1341,7 +1341,7 @@ static unsigned int stmmac_rx_offset(struct stmmac_priv *priv)
> if (stmmac_xdp_is_enabled(priv))
> return XDP_PACKET_HEADROOM;
>
> - return 0;
> + return NET_SKB_PAD;
> }
>
> static int stmmac_set_bfsize(int mtu, int bufsize)
> @@ -2040,17 +2040,21 @@ static int __alloc_dma_rx_desc_resources(struct stmmac_priv *priv,
> struct stmmac_channel *ch = &priv->channel[queue];
> bool xdp_prog = stmmac_xdp_is_enabled(priv);
> struct page_pool_params pp_params = { 0 };
> - unsigned int num_pages;
> + unsigned int dma_buf_sz_pad, num_pages;
> unsigned int napi_id;
> int ret;
>
> + dma_buf_sz_pad = stmmac_rx_offset(priv) + dma_conf->dma_buf_sz +
> + SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
> + num_pages = DIV_ROUND_UP(dma_buf_sz_pad, PAGE_SIZE);
> +
> rx_q->queue_index = queue;
> rx_q->priv_data = priv;
> + rx_q->napi_skb_frag_size = num_pages * PAGE_SIZE;
>
> pp_params.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV;
> pp_params.pool_size = dma_conf->dma_rx_size;
> - num_pages = DIV_ROUND_UP(dma_conf->dma_buf_sz, PAGE_SIZE);
> - pp_params.order = ilog2(num_pages);
> + pp_params.order = order_base_2(num_pages);
> pp_params.nid = dev_to_node(priv->device);
> pp_params.dev = priv->device;
> pp_params.dma_dir = xdp_prog ? DMA_BIDIRECTIONAL : DMA_FROM_DEVICE;
> @@ -5582,22 +5586,26 @@ static int stmmac_rx(struct stmmac_priv *priv, int limit, u32 queue)
> }
>
> if (!skb) {
> + unsigned int head_pad_len;
> +
> /* XDP program may expand or reduce tail */
> buf1_len = ctx.xdp.data_end - ctx.xdp.data;
>
> - skb = napi_alloc_skb(&ch->rx_napi, buf1_len);
> + skb = napi_build_skb(page_address(buf->page),
> + rx_q->napi_skb_frag_size);
> if (!skb) {
> + page_pool_recycle_direct(rx_q->page_pool,
> + buf->page);
> rx_dropped++;
> count++;
> goto drain_data;
> }
>
> /* XDP program may adjust header */
> - skb_copy_to_linear_data(skb, ctx.xdp.data, buf1_len);
> + head_pad_len = ctx.xdp.data - ctx.xdp.data_hard_start;
> + skb_reserve(skb, head_pad_len);
> skb_put(skb, buf1_len);
> -
> - /* Data payload copied into SKB, page ready for recycle */
> - page_pool_recycle_direct(rx_q->page_pool, buf->page);
> + skb_mark_for_recycle(skb);
> buf->page = NULL;
> } else if (buf1_len) {
> dma_sync_single_for_cpu(priv->device, buf->addr,
next prev parent reply other threads:[~2025-01-16 2:05 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-15 3:27 [PATCH net-next v3 0/4] net: stmmac: RX performance improvement Furong Xu
2025-01-15 3:27 ` [PATCH net-next v3 1/4] net: stmmac: Switch to zero-copy in non-XDP RX path Furong Xu
2025-01-15 16:58 ` Larysa Zaremba
2025-01-16 2:05 ` Yanteng Si [this message]
2025-01-23 14:06 ` Jon Hunter
2025-01-23 16:35 ` Furong Xu
2025-01-23 19:53 ` Brad Griffis
2025-01-23 21:48 ` Andrew Lunn
2025-01-24 2:42 ` Furong Xu
2025-01-24 13:15 ` Thierry Reding
2025-01-28 20:04 ` Lucas Stach
2025-01-25 10:20 ` Ido Schimmel
2025-01-25 14:43 ` Furong Xu
2025-01-26 8:41 ` Ido Schimmel
2025-01-26 10:37 ` Furong Xu
2025-01-26 11:35 ` Ido Schimmel
2025-01-26 12:56 ` Furong Xu
2025-01-25 15:03 ` Furong Xu
2025-01-25 19:08 ` Andrew Lunn
2025-01-26 2:39 ` Furong Xu
2025-01-27 13:28 ` Thierry Reding
2025-01-29 14:51 ` Jon Hunter
2025-02-07 9:07 ` Furong Xu
2025-02-07 13:42 ` Jon Hunter
2025-01-24 1:53 ` Furong Xu
2025-01-24 15:14 ` Andrew Lunn
2025-01-15 3:27 ` [PATCH net-next v3 2/4] net: stmmac: Set page_pool_params.max_len to a precise size Furong Xu
2025-01-15 10:07 ` Yanteng Si
2025-01-15 3:27 ` [PATCH net-next v3 3/4] net: stmmac: Optimize cache prefetch in RX path Furong Xu
2025-01-15 16:24 ` Yanteng Si
2025-01-15 3:27 ` [PATCH net-next v3 4/4] net: stmmac: Convert prefetch() to net_prefetch() for received frames Furong Xu
2025-01-15 16:33 ` Yanteng Si
2025-01-15 16:35 ` Larysa Zaremba
2025-01-15 17:35 ` Joe Damato
2025-01-16 11:40 ` [PATCH net-next v3 0/4] net: stmmac: RX performance improvement patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1985a09f-f851-48a6-af6c-07e21611b514@linux.dev \
--to=si.yanteng@linux.dev \
--cc=0x1207@gmail.com \
--cc=aleksander.lobakin@intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jdamato@fastly.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=xfr@outlook.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).