From: sashiko-bot@kernel.org
To: "Daniel Machon" <daniel.machon@microchip.com>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH net-next v2 10/13] net: lan966x: add PCIe FDMA MTU change support
Date: Wed, 29 Apr 2026 13:10:06 +0000 [thread overview]
Message-ID: <20260429131007.3F98FC19425@smtp.kernel.org> (raw)
In-Reply-To: <20260428-lan966x-pci-fdma-v2-10-d3ec66e06202@microchip.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] NAPI is enabled after unmasking hardware interrupts, causing a race condition that permanently stalls the RX/TX queues.
--
commit 1f509ad580a86a49efbb1d85d8112806e4ae3d36
Author: Daniel Machon <daniel.machon@microchip.com>
net: lan966x: add PCIe FDMA MTU change support
This commit adds MTU change support for the PCIe FDMA path. When the MTU
changes, contiguous ATU-mapped RX and TX buffers are reallocated with the
new size, or restored to the old ones on failure.
> diff --git a/drivers/net/ethernet/microchip/lan966x/lan966x_fdma_pci.c b/drivers/net/ethernet/microchip/lan966x/lan966x_fdma_pci.c
> index bda9679a03e1..61a62dbcc313 100644
> --- a/drivers/net/ethernet/microchip/lan966x/lan966x_fdma_pci.c
> +++ b/drivers/net/ethernet/microchip/lan966x/lan966x_fdma_pci.c
[ ... ]
> @@ -306,9 +311,154 @@ static int lan966x_fdma_pci_init(struct lan966x *lan966x)
> return 0;
> }
>
[ ... ]
> +static int lan966x_fdma_pci_reload(struct lan966x *lan966x, int new_mtu)
> +{
[ ... ]
> + /* Free and unmap old memory. */
> + fdma_free_coherent_and_unmap(lan966x->dev, &rx_fdma_old);
> + fdma_free_coherent_and_unmap(lan966x->dev, &tx_fdma_old);
> +
> + lan966x_fdma_rx_start(&lan966x->rx);
> + lan966x_fdma_pci_wakeup_netdev(lan966x);
> + napi_enable(&lan966x->napi);
Is there a race condition here between unmasking the hardware interrupts and
enabling NAPI?
lan966x_fdma_rx_start() unmasks hardware interrupts for the RX channel. If an
interrupt fires immediately after this call but before napi_enable() executes,
the IRQ handler will run, mask the interrupt in hardware, and call
napi_schedule().
Because napi_enable() hasn't been called yet, the NAPI state is still
disabled, so napi_schedule_prep() will fail and NAPI won't be scheduled. Once
napi_enable() finally runs, the poll schedule is already lost and the hardware
interrupt remains permanently masked, stalling the queues.
Should napi_enable() be called before lan966x_fdma_rx_start() to ensure any
immediate interrupts are properly scheduled?
> +
> + return err;
> +restore:
> +
> + /* No new buffers are allocated at this point. Use the old buffers,
> + * but reset them before starting the FDMA again.
> + */
> +
> + memcpy(&lan966x->tx.fdma, &tx_fdma_old, sizeof(struct fdma));
> + memcpy(&lan966x->rx.fdma, &rx_fdma_old, sizeof(struct fdma));
> +
> + lan966x->rx.max_mtu = old_mtu;
> +
> + lan966x_fdma_pci_reset_mem(lan966x);
> +
> + lan966x_fdma_rx_start(&lan966x->rx);
> + lan966x_fdma_pci_wakeup_netdev(lan966x);
> + napi_enable(&lan966x->napi);
This same sequence appears here in the restore path. Does it have the same
potential issue with missed interrupts?
> +
> + return err;
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260428-lan966x-pci-fdma-v2-0-d3ec66e06202@microchip.com?part=10
next prev parent reply other threads:[~2026-04-29 13:10 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-28 13:06 [PATCH net-next v2 00/13] net: lan966x: add support for PCIe FDMA Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 01/13] MAINTAINERS: add FDMA library to Sparx5 SoC entry Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 02/13] net: microchip: fdma: rename contiguous dataptr helpers Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 03/13] net: microchip: fdma: add PCIe ATU support Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 04/13] net: lan966x: add FDMA LLP register write helper Daniel Machon
2026-04-29 13:10 ` sashiko-bot
2026-04-28 13:06 ` [PATCH net-next v2 05/13] net: lan966x: export FDMA helpers for reuse Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 06/13] net: lan966x: add FDMA ops dispatch for PCIe support Daniel Machon
2026-04-29 13:10 ` sashiko-bot
2026-04-28 13:06 ` [PATCH net-next v2 07/13] net: lan966x: clear FDMA interrupt stickies after switch reset Daniel Machon
2026-04-28 13:06 ` [PATCH net-next v2 08/13] net: lan966x: add shutdown callback to stop FDMA on reboot Daniel Machon
2026-04-29 13:10 ` sashiko-bot
2026-04-28 13:06 ` [PATCH net-next v2 09/13] net: lan966x: add PCIe FDMA support Daniel Machon
2026-04-29 13:10 ` sashiko-bot
2026-04-28 13:06 ` [PATCH net-next v2 10/13] net: lan966x: add PCIe FDMA MTU change support Daniel Machon
2026-04-29 13:10 ` sashiko-bot [this message]
2026-04-28 13:07 ` [PATCH net-next v2 11/13] net: lan966x: add PCIe FDMA XDP support Daniel Machon
2026-04-29 13:10 ` sashiko-bot
2026-04-28 13:07 ` [PATCH net-next v2 12/13] misc: lan966x-pci: dts: extend cpu reg to cover PCIE DBI space Daniel Machon
2026-04-28 13:07 ` [PATCH net-next v2 13/13] misc: lan966x-pci: dts: add fdma interrupt to overlay Daniel Machon
2026-04-28 16:07 ` [PATCH net-next v2 00/13] net: lan966x: add support for PCIe FDMA Herve Codina
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=20260429131007.3F98FC19425@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel.machon@microchip.com \
--cc=sashiko@lists.linux.dev \
/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