From: Hariprasad Kelam <hkelam@marvell.com>
To: Wei Fang <wei.fang@nxp.com>
Cc: "andrew+netdev@lunn.ch" <andrew+netdev@lunn.ch>,
"davem@davemloft.net" <davem@davemloft.net>,
"edumazet@google.com" <edumazet@google.com>,
"kuba@kernel.org" <kuba@kernel.org>,
"pabeni@redhat.com" <pabeni@redhat.com>,
"mcoquelin.stm32@gmail.com" <mcoquelin.stm32@gmail.com>,
"alexandre.torgue@foss.st.com" <alexandre.torgue@foss.st.com>,
"ast@kernel.org" <ast@kernel.org>,
"daniel@iogearbox.net" <daniel@iogearbox.net>,
"hawk@kernel.org" <hawk@kernel.org>,
"john.fastabend@gmail.com" <john.fastabend@gmail.com>,
"sdf@fomichev.me" <sdf@fomichev.me>,
"rmk+kernel@armlinux.org.uk" <rmk+kernel@armlinux.org.uk>,
"0x1207@gmail.com" <0x1207@gmail.com>,
"hayashi.kunihiko@socionext.com" <hayashi.kunihiko@socionext.com>,
Vladimir Oltean <vladimir.oltean@nxp.com>,
"boon.leong.ong@intel.com" <boon.leong.ong@intel.com>,
"imx@lists.linux.dev" <imx@lists.linux.dev>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-stm32@st-md-mailman.stormreply.com"
<linux-stm32@st-md-mailman.stormreply.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"bpf@vger.kernel.org" <bpf@vger.kernel.org>
Subject: Re: [PATCH net] net: stmmac: fix the crash issue for zero copy XDP_TX action
Date: Fri, 19 Dec 2025 15:34:20 +0530 [thread overview]
Message-ID: <aUUjJH1tQkN1UcYL@test-OptiPlex-Tower-Plus-7010> (raw)
In-Reply-To: <PAXPR04MB8510499B65301187736D511088A8A@PAXPR04MB8510.eurprd04.prod.outlook.com>
On 2025-12-18 at 12:06:47, Wei Fang (wei.fang@nxp.com) wrote:
> > On 2025-12-17 at 18:19:19, Wei Fang (wei.fang@nxp.com) wrote:
> > > > > - res = stmmac_xdp_xmit_xdpf(priv, queue, xdpf, false);
> > > > > - if (res == STMMAC_XDP_TX)
> > > > > + /* For zero copy XDP_TX action, dma_map is true */
> > > > > + res = stmmac_xdp_xmit_xdpf(priv, queue, xdpf, zc);
> > > > Seems stmmac_xdp_xmit_xdpf is using dma_map_single if we pass zc is
> > > > true.
> > > > Ideally in case of zc, driver can use
> > > > page_pool_get_dma_addr, may be you
> > > > need pass zc param as false. Please check
> > > >
> > >
> > > No, the memory type of xdpf->data is MEM_TYPE_PAGE_ORDER0 rather than
> > > MEM_TYPE_PAGE_POOL, so we should use dma_map_single().
> > > Otherwise, it will lead to invalid mappings and cause the crash.
> > >
> > >
> > ACK, found below code bit confusing
> > case STMMAC_XDP_CONSUMED:
> > xsk_buff_free(buf->xdp);
> > + fallthrough;
> > + case STMMAC_XSK_CONSUMED:
> > rx_dropped++;
> >
> > Ideally in case of STMMAC_XSK_CONSUMED, driver needs to call
> > xsk_buff_free.
> > And in case of STMMAC_XDP_CONSUMED, driver needs to call
> > xdp_return_frame.
> > May be you can move all buffer free logic to stmmac_rx_zc with above
> > suggested
> > changes.
>
> For zero copy, the xdp_buff is freed by xdp_convert_buff_to_frame()
> when converting the xdp_xdp to xdp_frame. So STMMAC_XSK_CONSUMED
> means the xdp_buff has been freed, it tells stmmac_rx_zc() no to free a
> xdp_buff that has been freed.
>
> I have added a comment for STMMAC_XSK_CONSUMED, see
>
> + } else if (res == STMMAC_XDP_CONSUMED && zc) {
> + /* xdp has been freed by xdp_convert_buff_to_frame(),
> + * no need to call xsk_buff_free() again, so return
> + * STMMAC_XSK_CONSUMED.
> + */
> + res = STMMAC_XSK_CONSUMED;
> + xdp_return_frame(xdpf);
> + }
>
>
ACK.
Reviewed-by: Hariprasad Kelam <hkelam@marvell.com>
next prev parent reply other threads:[~2025-12-19 10:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-04 7:13 [PATCH net] net: stmmac: fix the crash issue for zero copy XDP_TX action Wei Fang
2025-12-17 11:08 ` Hariprasad Kelam
2025-12-17 12:49 ` Wei Fang
2025-12-18 6:21 ` Hariprasad Kelam
2025-12-18 6:36 ` Wei Fang
2025-12-19 10:04 ` Hariprasad Kelam [this message]
2025-12-29 3:41 ` Wei Fang
2025-12-29 16:40 ` 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=aUUjJH1tQkN1UcYL@test-OptiPlex-Tower-Plus-7010 \
--to=hkelam@marvell.com \
--cc=0x1207@gmail.com \
--cc=alexandre.torgue@foss.st.com \
--cc=andrew+netdev@lunn.ch \
--cc=ast@kernel.org \
--cc=boon.leong.ong@intel.com \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hawk@kernel.org \
--cc=hayashi.kunihiko@socionext.com \
--cc=imx@lists.linux.dev \
--cc=john.fastabend@gmail.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=rmk+kernel@armlinux.org.uk \
--cc=sdf@fomichev.me \
--cc=vladimir.oltean@nxp.com \
--cc=wei.fang@nxp.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