* bond_slave_register(). This is optional if none of the slaves'
* configuration has changed, except that it is mandatory if 's' enables LACP
* and 'bond' previously didn't have LACP enabled. In any case it can't
- * hurt. */
-void
+ * hurt.
+ *
+ * Returns true if the configuration has changed in such a way that requires
+ * flow revalidation.
+ * */
+bool
bond_reconfigure(struct bond *bond, const struct bond_settings *s)
{
+ bool revalidate = false;
+
if (!bond->name || strcmp(bond->name, s->name)) {
if (bond->name) {
hmap_remove(&all_bonds, &bond->hmap_node);
hmap_insert(&all_bonds, &bond->hmap_node, hash_string(bond->name, 0));
}
- bond->balance = s->balance;
bond->detect = s->detect;
bond->miimon_interval = s->miimon_interval;
bond->updelay = s->up_delay;
bond->downdelay = s->down_delay;
bond->rebalance_interval = s->rebalance_interval;
+ if (bond->balance != s->balance) {
+ bond->balance = s->balance;
+ revalidate = true;
+ }
+
if (bond->balance != BM_AB) {
if (!bond->hash) {
bond->hash = xcalloc(BOND_MASK + 1, sizeof *bond->hash);
} else {
bond->next_fake_iface_update = LLONG_MAX;
}
+
+ return revalidate;
}
/* Registers 'slave_' as a slave of 'bond'. The 'slave_' pointer is an
struct bond *bond_create(const struct bond_settings *);
void bond_destroy(struct bond *);
-void bond_reconfigure(struct bond *, const struct bond_settings *);
+bool bond_reconfigure(struct bond *, const struct bond_settings *);
void bond_slave_register(struct bond *, void *slave_, struct netdev *,
const struct lacp_slave_settings *);
void bond_slave_unregister(struct bond *, const void *slave);
if (!port->bond) {
port->bond = bond_create(&s);
} else {
- bond_reconfigure(port->bond, &s);
+ if (bond_reconfigure(port->bond, &s)) {
+ bridge_flush(port->bridge);
+ }
}
LIST_FOR_EACH (iface, port_elem, &port->ifaces) {