From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 62DF21DDC1B for ; Sat, 13 Jun 2026 01:10:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781313021; cv=none; b=VV/AVSecUqsCKqaZiAfSgHT801QGSXku33rIm7Rjvsjw6MrBLMhYTpAjFuEiNmoNAr1p8g4LZAM49xaHLT9TSAR5AM3waoVRw8KzvYGApXB2m8KpXbGRRvEufHnLDIznaXnEiD1Ok1EaOUIMxw5y+5nZVcO5ZaGhgOoqKsxJU8I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781313021; c=relaxed/simple; bh=9vHFjbt/wsWQatJePMQrK/eFayDBSHziZU3Dcj/b1mg=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=VKwaCAprux52V7lDZ+YhoNAZ80f0KkMQC8STVpKd80LRp7HDhCCvxLfuERvle+cQ4YODK39heYER8jxU/tYooxccBKq9ubXCs1Hi+Gii2v89GXbSM9cWiCY7b8jEvriY980R4W6vmo4/G7K81MHm0DjuGrycmhWZX/bUUsSOVQc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Y0jfBpME; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Y0jfBpME" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 47B541F000E9; Sat, 13 Jun 2026 01:10:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781313020; bh=HM7phR7ArlnYN7eFaM+6ttPKRw2bRHAo+mGjNH1LS6I=; h=Subject:From:Date:References:In-Reply-To:To:Cc; b=Y0jfBpMEYjDg0wCH1elHkTyjw1Aa995rEOJmvbr3KeiAh07fY4zroQCtMelIgSdl0 cocB02BzFugl9Z7TneBUPYxIaxEMvgVzqqXnd4Wg7YZUVFlqNodXIQER8Zl0Ymnaxz zyFtMSoauTLWy44mpFfsMPjIpS+BVpU55H30ke9P7NR3rx3t9UP0pYqThm796nXZDH aYB6GFHnJtPGDqWUmNNgUJ9vXCM941VcLNgtRINH47zH4ivtvzM3HBn9WFXhthWzmR Vpp7Hi8dHQRa0gmp2KIb8QHeZ18ZXdnaH/4ZnnSU8W3vHAErdhVrJvI4LrQCnyQk1C HAPNoCWievxjA== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 198BA39E9607; Sat, 13 Jun 2026 01:10:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v3 net-next 0/5] net: bridge: take care of p->flags accesses From: patchwork-bot+netdevbpf@kernel.org Message-Id: <178131301663.1317911.9588743141453529549.git-patchwork-notify@kernel.org> Date: Sat, 13 Jun 2026 01:10:16 +0000 References: <20260611203453.3067462-1-edumazet@google.com> In-Reply-To: <20260611203453.3067462-1-edumazet@google.com> To: Eric Dumazet Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com, horms@kernel.org, idosch@nvidia.com, razor@blackwall.org, netdev@vger.kernel.org, eric.dumazet@gmail.com Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Thu, 11 Jun 2026 20:34:48 +0000 you wrote: > (struct net_bridge_port)->flags can be read/written locklessly, > and thus can fire KCSAN warnings, or real bugs. > > Prefer atomic operations (test_bit(), clear_bit(), set_bit()) > and use READ_ONCE() for the remaining uses. > > v3: addressed Sashiko's feddback on patch 2. > v2: addressed Nikolay's feedback on patches 3 & 4. > > [...] Here is the summary with links: - [v3,net-next,1/5] bridge: use atomic ops to read/change p->flags in sysfs https://git.kernel.org/netdev/net-next/c/391932e24915 - [v3,net-next,2/5] bridge: use atomic ops to read/change p->flags in br_netlink.c https://git.kernel.org/netdev/net-next/c/e92df84bcc3b - [v3,net-next,3/5] net: bridge: use atomic ops to read/change p->flags (I) https://git.kernel.org/netdev/net-next/c/65b8de45ae05 - [v3,net-next,4/5] net: bridge: use atomic ops to read/change p->flags (II) https://git.kernel.org/netdev/net-next/c/55b2d7ae7bea - [v3,net-next,5/5] net: bridge: use atomic ops to read/change p->flags (III) https://git.kernel.org/netdev/net-next/c/f76ae12b6ba3 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html