netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Tariq Toukan <ttoukan.linux@gmail.com>
To: Amery Hung <ameryhung@gmail.com>, netdev@vger.kernel.org
Cc: bpf@vger.kernel.org, andrew+netdev@lunn.ch, davem@davemloft.net,
	edumazet@google.com, pabeni@redhat.com, kuba@kernel.org,
	martin.lau@kernel.org, noren@nvidia.com, dtatulea@nvidia.com,
	saeedm@nvidia.com, tariqt@nvidia.com, mbloch@nvidia.com,
	cpaasch@openai.com, kernel-team@meta.com
Subject: Re: [PATCH net v1 1/2] net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for legacy RQ
Date: Thu, 11 Sep 2025 08:47:06 +0300	[thread overview]
Message-ID: <ea28ab1d-eace-4c6e-b5b4-2eb835eaaa64@gmail.com> (raw)
In-Reply-To: <20250910034103.650342-2-ameryhung@gmail.com>



On 10/09/2025 6:41, Amery Hung wrote:
> XDP programs can release xdp_buff fragments when calling
> bpf_xdp_adjust_tail(). The driver currently assumes the number of
> fragments to be unchanged and may generate skb with wrong truesize or
> containing invalid frags. Fix the bug by generating skb according to
> xdp_buff after the XDP program runs.
> 
> Fixes: ea5d49bdae8b ("net/mlx5e: Add XDP multi buffer support to the non-linear legacy RQ")
> Signed-off-by: Amery Hung <ameryhung@gmail.com>
> ---

Hi,

Thanks for your patch!

>   drivers/net/ethernet/mellanox/mlx5/core/en_rx.c | 9 +++++++++
>   1 file changed, 9 insertions(+)
> 
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
> index b8c609d91d11..1d3eacfd0325 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
> @@ -1729,6 +1729,7 @@ mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5e_wqe_frag_info *wi
>   	struct mlx5e_wqe_frag_info *head_wi = wi;
>   	u16 rx_headroom = rq->buff.headroom;
>   	struct mlx5e_frag_page *frag_page;
> +	u8 nr_frags_free, old_nr_frags;
>   	struct skb_shared_info *sinfo;
>   	u32 frag_consumed_bytes;
>   	struct bpf_prog *prog;
> @@ -1772,17 +1773,25 @@ mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5e_wqe_frag_info *wi
>   		wi++;
>   	}
>   
> +	old_nr_frags = sinfo->nr_frags;
> +
>   	prog = rcu_dereference(rq->xdp_prog);
>   	if (prog && mlx5e_xdp_handle(rq, prog, mxbuf)) {
>   		if (__test_and_clear_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags)) {
>   			struct mlx5e_wqe_frag_info *pwi;
>   
> +			wi -= old_nr_frags - sinfo->nr_frags;
> +
>   			for (pwi = head_wi; pwi < wi; pwi++)
>   				pwi->frag_page->frags++;
>   		}
>   		return NULL; /* page/packet was consumed by XDP */
>   	}
>   
> +	nr_frags_free = old_nr_frags - sinfo->nr_frags;
> +	wi -= nr_frags_free;
> +	truesize -= nr_frags_free * frag_info->frag_stride;
> +

New code section better be under if (prog), rather than running 
unconditionally.
Also move all needed new local vars under if (prog) to minimize their scope.

>   	skb = mlx5e_build_linear_skb(
>   		rq, mxbuf->xdp.data_hard_start, rq->buff.frame0_sz,
>   		mxbuf->xdp.data - mxbuf->xdp.data_hard_start,


  parent reply	other threads:[~2025-09-11  5:47 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-10  3:41 [PATCH net v1 0/2] Fix generating skb from non-linear xdp_buff for mlx5 Amery Hung
2025-09-10  3:41 ` [PATCH net v1 1/2] net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for legacy RQ Amery Hung
2025-09-10 16:23   ` Dragos Tatulea
2025-09-10 16:39     ` Amery Hung
2025-09-11  5:47   ` Tariq Toukan [this message]
2025-09-10  3:41 ` [PATCH net v1 2/2] net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for striding RQ Amery Hung
2025-09-11  6:19   ` Tariq Toukan
2025-09-15 20:39     ` Amery Hung

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=ea28ab1d-eace-4c6e-b5b4-2eb835eaaa64@gmail.com \
    --to=ttoukan.linux@gmail.com \
    --cc=ameryhung@gmail.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=bpf@vger.kernel.org \
    --cc=cpaasch@openai.com \
    --cc=davem@davemloft.net \
    --cc=dtatulea@nvidia.com \
    --cc=edumazet@google.com \
    --cc=kernel-team@meta.com \
    --cc=kuba@kernel.org \
    --cc=martin.lau@kernel.org \
    --cc=mbloch@nvidia.com \
    --cc=netdev@vger.kernel.org \
    --cc=noren@nvidia.com \
    --cc=pabeni@redhat.com \
    --cc=saeedm@nvidia.com \
    --cc=tariqt@nvidia.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).