From nobody Mon Feb 9 23:15:20 2026 Received: from mail.aperture-lab.de (mail.aperture-lab.de [116.203.183.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E19BA29AAF7; Fri, 6 Feb 2026 03:01:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=116.203.183.178 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770346909; cv=none; b=oDYlBe0DxDbtV8B40NRXPHzctL2rLUhyKB80xYQ0a57aQoq+enKrnAjCF9BoRmihT4TU6owj0EfabNBRAPxwkFcShWNmhZZktolXLf9hQO2P639W6SZeIeKbNod/zGxKYQPQX9JEO6264RoiAF0cVXyr595PlHUnqll4k8wloQY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770346909; c=relaxed/simple; bh=WzOgRDEzXCAKgOdpd60w+Khy3HRoAi+tyKqU3rOIVqc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=MqmkU7lkz+AApDiM+iFf1C6JjPJcTg80kgB0uyQrtqxC2fyaHtIgbqvlSMXE9/XFX82a6YbaoNoLEwFBBXuqao90hXRUovpZYF3Ama4F4JZxMRtNGaYNuEBzZGsrK3Xs67Hf5dK68cW1LtGlBB/xn3YdsavQVfgXU89r9EIw5o4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=c0d3.blue; spf=pass smtp.mailfrom=c0d3.blue; arc=none smtp.client-ip=116.203.183.178 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=c0d3.blue Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=c0d3.blue Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id EFB5E54CCE1; Fri, 6 Feb 2026 04:01:46 +0100 (CET) From: =?UTF-8?q?Linus=20L=C3=BCssing?= To: bridge@lists.linux.dev Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Nikolay Aleksandrov , Ido Schimmel , Andrew Lunn , Simon Horman , Paolo Abeni , Jakub Kicinski , Eric Dumazet , "David S . Miller" , Kuniyuki Iwashima , Stanislav Fomichev , Xiao Liang , =?UTF-8?q?Linus=20L=C3=BCssing?= Subject: [PATCH net-next v2 10/14] net: bridge: mcast: track active state, bridge up/down Date: Fri, 6 Feb 2026 03:52:16 +0100 Message-ID: <20260206030123.5430-11-linus.luessing@c0d3.blue> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260206030123.5430-1-linus.luessing@c0d3.blue> References: <20260206030123.5430-1-linus.luessing@c0d3.blue> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 This is mainly for switchdev and DSA later: To ensure that we switch to inactive before destroying a bridge interface. A switchdev/DSA driver might have allocated resources after we switched to an enabled multicast active state. This gives switchdev/DSA drivers a chance to free these resources again when we destroy the bridge (later). Putting it into the ndo_stop / bridge interface down part instead of the ndo_uninit / bridge destroy part though for a better semantic match. If the bridge interface is down / stopped then it is also inactive. No functional change for the fast/data path. Signed-off-by: Linus L=C3=BCssing --- include/uapi/linux/if_link.h | 8 ++++---- net/bridge/br_multicast.c | 10 ++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h index d68eeff21b73..4ce9ddee94e8 100644 --- a/include/uapi/linux/if_link.h +++ b/include/uapi/linux/if_link.h @@ -748,14 +748,14 @@ enum in6_addr_gen_mode { * @IFLA_BR_MCAST_ACTIVE_V4 * Bridge IPv4 mcast active state, read only. * - * 1 if *IFLA_BR_MCAST_SNOOPING* is enabled and an IGMP querier is prese= nt, - * 0 otherwise. + * 1 if *IFLA_BR_MCAST_SNOOPING* is enabled, an IGMP querier is present + * and the bridge interface is up, 0 otherwise. * * @IFLA_BR_MCAST_ACTIVE_V6 * Bridge IPv6 mcast active state, read only. * - * 1 if *IFLA_BR_MCAST_SNOOPING* is enabled and an MLD querier is presen= t, - * 0 otherwise. + * 1 if *IFLA_BR_MCAST_SNOOPING* is enabled, an MLD querier is present + * and the bridge interface is up, 0 otherwise. */ enum { IFLA_BR_UNSPEC, diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 2a2f54009e0f..7a32c6bed111 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c @@ -1124,6 +1124,7 @@ static void br_multicast_notify_active(struct net_bri= dge_mcast *brmctx, * * The multicast active state is set, per protocol family, if: * + * - the bridge interface is up * - multicast snooping is enabled * - an IGMP/MLD querier is present * - for own IPv6 MLD querier: an IPv6 address is configured on the bridge @@ -1140,6 +1141,9 @@ static void br_multicast_update_active(struct net_bri= dge_mcast *brmctx) =20 lockdep_assert_held_once(&brmctx->br->multicast_lock); =20 + if (!netif_running(brmctx->br->dev)) + force_inactive =3D true; + if (!br_opt_get(brmctx->br, BROPT_MULTICAST_ENABLED)) force_inactive =3D true; =20 @@ -4412,6 +4416,9 @@ static void __br_multicast_open(struct net_bridge_mca= st *brmctx) #if IS_ENABLED(CONFIG_IPV6) __br_multicast_open_query(brmctx->br, &brmctx->ip6_own_query); #endif + + /* bridge interface is up, maybe set multicast state to active */ + br_multicast_update_active(brmctx); } =20 void br_multicast_open(struct net_bridge *br) @@ -4452,6 +4459,9 @@ static void __br_multicast_stop(struct net_bridge_mca= st *brmctx) timer_shutdown(&brmctx->ip6_other_query.delay_timer); timer_shutdown(&brmctx->ip6_own_query.timer); #endif + + /* bridge interface is down, set multicast state to inactive */ + br_multicast_update_active(brmctx); } =20 void br_multicast_update_vlan_mcast_ctx(struct net_bridge_vlan *v, u8 stat= e) --=20 2.51.0