Re: [PATCH net-next v4 04/14] net: bridge: mcast: track active state, IGMP/MLD querier appearance
From: Ido Schimmel
Date: Mon Mar 09 2026 - 09:03:12 EST
On Sat, Mar 07, 2026 at 05:45:38AM +0100, Linus Lüssing wrote:
> @@ -4245,7 +4355,7 @@ void br_multicast_reset_timer_cbs(struct net_bridge_mcast *brmctx)
> brmctx->ip4_other_query.timer.function =
> br_ip4_multicast_querier_expired;
> brmctx->ip4_other_query.delay_timer.function =
> - br_multicast_query_delay_expired;
> + br_ip4_multicast_query_delay_expired;
> brmctx->ip4_own_query.timer.function =
> br_ip4_multicast_query_expired;
> #if IS_ENABLED(CONFIG_IPV6)
> @@ -4254,7 +4364,7 @@ void br_multicast_reset_timer_cbs(struct net_bridge_mcast *brmctx)
> brmctx->ip6_other_query.timer.function =
> br_ip6_multicast_querier_expired;
> brmctx->ip6_other_query.delay_timer.function =
> - br_multicast_query_delay_expired;
> + br_ip6_multicast_query_delay_expired;
> brmctx->ip6_own_query.timer.function =
> br_ip6_multicast_query_expired;
> #endif
Patch looks fine to me, but it will probably need to change a little
because of this hunk and my earlier comments