net: bridge: multicast: use rcu to access port list from br_multicast_start_querier
br_multicast_start_querier() walks over the port list but it can be
called from a timer with only multicast_lock held which doesn't protect
the port list, so use RCU to walk over it.
Fixes: c83b8fab06
("bridge: Restart queries when last querier expires")
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9a4dda81f1
commit
c5b493ce19
|
@ -2031,7 +2031,8 @@ static void br_multicast_start_querier(struct net_bridge *br,
|
||||||
|
|
||||||
__br_multicast_open(br, query);
|
__br_multicast_open(br, query);
|
||||||
|
|
||||||
list_for_each_entry(port, &br->port_list, list) {
|
rcu_read_lock();
|
||||||
|
list_for_each_entry_rcu(port, &br->port_list, list) {
|
||||||
if (port->state == BR_STATE_DISABLED ||
|
if (port->state == BR_STATE_DISABLED ||
|
||||||
port->state == BR_STATE_BLOCKING)
|
port->state == BR_STATE_BLOCKING)
|
||||||
continue;
|
continue;
|
||||||
|
@ -2043,6 +2044,7 @@ static void br_multicast_start_querier(struct net_bridge *br,
|
||||||
br_multicast_enable(&port->ip6_own_query);
|
br_multicast_enable(&port->ip6_own_query);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
rcu_read_unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
int br_multicast_toggle(struct net_bridge *br, unsigned long val)
|
int br_multicast_toggle(struct net_bridge *br, unsigned long val)
|
||||||
|
|
Loading…
Reference in New Issue