batman-adv: purge bridge loop avoidance when its disabled
When bridge loop avoidance is disabled through sysfs, the internal datastructures are not disabled, but only BLA operations are disabled. To be sure that they are removed, purge the data immediately. That is especially useful if a firmwares network state is changed, and the BLA wait periods should restart on the new network. Signed-off-by: Simon Wunderlich <simon@open-mesh.com> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Antonio Quartulli <a@unstable.cc>
This commit is contained in:

committed by
Antonio Quartulli

parent
143d157c9e
commit
d68081a240
@@ -1168,6 +1168,26 @@ void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* batadv_bla_status_update - purge bla interfaces if necessary
|
||||
* @net_dev: the soft interface net device
|
||||
*/
|
||||
void batadv_bla_status_update(struct net_device *net_dev)
|
||||
{
|
||||
struct batadv_priv *bat_priv = netdev_priv(net_dev);
|
||||
struct batadv_hard_iface *primary_if;
|
||||
|
||||
primary_if = batadv_primary_if_get_selected(bat_priv);
|
||||
if (!primary_if)
|
||||
return;
|
||||
|
||||
/* this function already purges everything when bla is disabled,
|
||||
* so just call that one.
|
||||
*/
|
||||
batadv_bla_update_orig_address(bat_priv, primary_if, primary_if);
|
||||
batadv_hardif_free_ref(primary_if);
|
||||
}
|
||||
|
||||
/* periodic work to do:
|
||||
* * purge structures when they are too old
|
||||
* * send announcements
|
||||
|
Reference in New Issue
Block a user