File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -4049,8 +4049,7 @@ int br_multicast_rcv(struct net_bridge_mcast **brmctx,
4049
4049
}
4050
4050
4051
4051
static void br_multicast_query_expired (struct net_bridge_mcast * brmctx ,
4052
- struct bridge_mcast_own_query * query ,
4053
- struct bridge_mcast_querier * querier )
4052
+ struct bridge_mcast_own_query * query )
4054
4053
{
4055
4054
spin_lock (& brmctx -> br -> multicast_lock );
4056
4055
if (br_multicast_ctx_vlan_disabled (brmctx ))
@@ -4069,8 +4068,7 @@ static void br_ip4_multicast_query_expired(struct timer_list *t)
4069
4068
struct net_bridge_mcast * brmctx = timer_container_of (brmctx , t ,
4070
4069
ip4_own_query .timer );
4071
4070
4072
- br_multicast_query_expired (brmctx , & brmctx -> ip4_own_query ,
4073
- & brmctx -> ip4_querier );
4071
+ br_multicast_query_expired (brmctx , & brmctx -> ip4_own_query );
4074
4072
}
4075
4073
4076
4074
#if IS_ENABLED (CONFIG_IPV6 )
@@ -4079,8 +4077,7 @@ static void br_ip6_multicast_query_expired(struct timer_list *t)
4079
4077
struct net_bridge_mcast * brmctx = timer_container_of (brmctx , t ,
4080
4078
ip6_own_query .timer );
4081
4079
4082
- br_multicast_query_expired (brmctx , & brmctx -> ip6_own_query ,
4083
- & brmctx -> ip6_querier );
4080
+ br_multicast_query_expired (brmctx , & brmctx -> ip6_own_query );
4084
4081
}
4085
4082
#endif
4086
4083
You can’t perform that action at this time.
0 commit comments