From: Jakub Kicinski <kuba@kernel.org>
To: edumazet@google.com
Cc: Jakub Kicinski <kuba@kernel.org>,
netdev@vger.kernel.org, syzkaller@googlegroups.com,
andy@greyhouse.net, eric.dumazet@gmail.com, pabeni@redhat.com,
j.vosburgh@gmail.com, davem@davemloft.net
Subject: Re: [net] bonding: annotate data-races around slave->last_rx
Date: Wed, 21 Jan 2026 18:22:37 -0800 [thread overview]
Message-ID: <20260122022237.2529455-1-kuba@kernel.org> (raw)
In-Reply-To: <20260120152856.1694824-1-edumazet@google.com>
This is an AI-generated review of your patch. The human sending this
email has considered the AI review valid, or at least plausible.
For local reproduction steps see https://netdev-ai.bots.linux.dev/ai-local.html
---
bonding: annotate data-races around slave->last_rx
This patch adds READ_ONCE()/WRITE_ONCE() annotations to slave->last_rx
and slave->target_last_arp_rx[] to fix KCSAN-reported data races in the
bonding driver's ARP monitoring code.
> diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c
> index 384499c869b8..74708bd2570e 100644
> --- a/drivers/net/bonding/bond_options.c
> +++ b/drivers/net/bonding/bond_options.c
> @@ -1152,7 +1152,7 @@ static void _bond_options_arp_ip_target_set(struct bonding *bond, int slot,
>
> if (slot >= 0 && slot < BOND_MAX_ARP_TARGETS) {
> bond_for_each_slave(bond, slave, iter)
> - slave->target_last_arp_rx[slot] = last_rx;
> + WRITE_ONCE(slave->target_last_arp_rx[slot], last_rx);
> targets[slot] = target;
> }
> }
Should the IPv6 NS version of this function also get WRITE_ONCE?
_bond_options_ns_ip6_target_set() writes to the same target_last_arp_rx[]
array:
static void _bond_options_ns_ip6_target_set(...)
{
...
if (slot >= 0 && slot < BOND_MAX_NS_TARGETS) {
bond_for_each_slave(bond, slave, iter) {
slave->target_last_arp_rx[slot] = last_rx; <-- no WRITE_ONCE
...
}
}
}
This seems like the same concurrent access pattern that the ARP IPv4 path
needed fixing for.
[ ... ]
--
pw-bot: cr
next prev parent reply other threads:[~2026-01-22 2:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-20 15:28 [PATCH net] bonding: annotate data-races around slave->last_rx Eric Dumazet
2026-01-22 2:22 ` Jakub Kicinski [this message]
2026-01-22 4:42 ` [net] " Eric Dumazet
2026-01-22 15:28 ` Jakub Kicinski
2026-01-22 15:50 ` Eric Dumazet
2026-01-22 15:56 ` Eric Dumazet
2026-01-22 15:57 ` Eric Dumazet
2026-01-22 16:58 ` Jakub Kicinski
2026-01-22 17:42 ` Chris Mason
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=20260122022237.2529455-1-kuba@kernel.org \
--to=kuba@kernel.org \
--cc=andy@greyhouse.net \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=eric.dumazet@gmail.com \
--cc=j.vosburgh@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=syzkaller@googlegroups.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.