From: sashiko-bot@kernel.org
To: "Yun Zhou" <yun.zhou@windriver.com>
Cc: linux-rt-devel@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4] net: mvneta: re-enable percpu interrupt on resume
Date: Tue, 23 Jun 2026 07:45:04 +0000 [thread overview]
Message-ID: <20260623074505.477D21F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260622074350.1666290-1-yun.zhou@windriver.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Unsafe call to mvneta_set_rx_mode() without netif_addr_lock_bh() in PM resume.
- [High] Race condition in mvneta_open() and mvneta_resume() with CPU hotplug causing double napi_enable().
--
commit bf4b34826006aca50b2726e755de72b6f2a7c330
Author: Yun Zhou <yun.zhou@windriver.com>
net: mvneta: re-enable percpu interrupt on resume
On Marvell MPIC platforms (Armada 370/XP/38x), mvneta uses a percpu IRQ
disable/enable scheme for NAPI. This commit fixes an issue where the MPIC
per-CPU interrupt stays masked permanently after suspend by unmasking it
unconditionally during the resume path.
> diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c
> index 0c061fb0ed072..744d6585a949d 100644
> --- a/drivers/net/ethernet/marvell/mvneta.c
> +++ b/drivers/net/ethernet/marvell/mvneta.c
> @@ -5900,6 +5900,9 @@ static int mvneta_resume(struct device *device)
> rtnl_unlock();
> mvneta_set_rx_mode(dev);
[Severity: High]
This isn't a bug introduced by this patch, but is it safe to call
mvneta_set_rx_mode() here without holding netif_addr_lock_bh()?
The mvneta_set_rx_mode() function iterates over the net_device's multicast
list:
drivers/net/ethernet/marvell/mvneta.c:mvneta_set_rx_mode() {
...
if (!netdev_mc_empty(dev)) {
netdev_for_each_mc_addr(ha, dev) {
mvneta_mcast_addr_set(pp, ha->addr,
pp->rxq_def);
}
}
...
}
Since rtnl_unlock() is called immediately before this, it looks like this
unprotected iteration could race with concurrent softirqs handling IGMP/MLD
packets. Could this corrupt the list and lead to use-after-free crashes or
infinite loops?
>
> + if (!pp->neta_armada3700)
> + on_each_cpu(mvneta_percpu_enable, pp, true);
> +
[Severity: High]
This is a pre-existing issue, but does the resume path have a race condition
with CPU hotplug?
In functions like mvneta_open() and mvneta_resume(), the device is added to
the CPU hotplug state via cpuhp_state_add_instance_nocalls() without
preventing concurrent hotplug events (e.g., via cpus_read_lock()).
If a CPU hotplug event triggers concurrently, mvneta_cpu_online() could call
napi_enable_locked() for the new CPU:
drivers/net/ethernet/marvell/mvneta.c:mvneta_cpu_online() {
...
napi_enable_locked(&port->napi);
...
}
If mvneta_start_dev() then runs and blindly iterates over all online CPUs
calling napi_enable(), could this result in a double napi_enable() on the
same NAPI instance and trigger a BUG_ON() panic in the core NAPI code?
> return 0;
> }
> #endif
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260622074350.1666290-1-yun.zhou@windriver.com?part=1
next prev parent reply other threads:[~2026-06-23 7:45 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-22 7:43 Yun Zhou
2026-06-23 7:45 ` sashiko-bot [this message]
2026-06-24 9:39 ` Sebastian Andrzej Siewior
2026-06-25 2:10 ` 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=20260623074505.477D21F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-devel@lists.linux.dev \
--cc=sashiko-reviews@lists.linux.dev \
--cc=yun.zhou@windriver.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