Lines Matching refs:new_active
999 static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active, in bond_hw_addr_swap() argument
1015 if (new_active) { in bond_hw_addr_swap()
1018 dev_set_promiscuity(new_active->dev, 1); in bond_hw_addr_swap()
1021 dev_set_allmulti(new_active->dev, 1); in bond_hw_addr_swap()
1025 dev_uc_sync(new_active->dev, bond->dev); in bond_hw_addr_swap()
1026 dev_mc_sync(new_active->dev, bond->dev); in bond_hw_addr_swap()
1030 bond_slave_ns_maddrs_del(bond, new_active); in bond_hw_addr_swap()
1059 struct slave *new_active) in bond_get_old_active() argument
1065 if (slave == new_active) in bond_get_old_active()
1082 struct slave *new_active, in bond_do_fail_over_mac() argument
1091 if (new_active) { in bond_do_fail_over_mac()
1092 rv = bond_set_dev_addr(bond->dev, new_active->dev); in bond_do_fail_over_mac()
1094 slave_err(bond->dev, new_active->dev, "Error %d setting bond MAC from slave\n", in bond_do_fail_over_mac()
1103 if (!new_active) in bond_do_fail_over_mac()
1107 old_active = bond_get_old_active(bond, new_active); in bond_do_fail_over_mac()
1110 bond_hw_addr_copy(tmp_mac, new_active->dev->dev_addr, in bond_do_fail_over_mac()
1111 new_active->dev->addr_len); in bond_do_fail_over_mac()
1115 ss.ss_family = new_active->dev->type; in bond_do_fail_over_mac()
1122 rv = dev_set_mac_address(new_active->dev, in bond_do_fail_over_mac()
1125 slave_err(bond->dev, new_active->dev, "Error %d setting MAC of new active slave\n", in bond_do_fail_over_mac()
1134 new_active->dev->addr_len); in bond_do_fail_over_mac()
1277 void bond_change_active_slave(struct bonding *bond, struct slave *new_active) in bond_change_active_slave() argument
1285 if (old_active == new_active) in bond_change_active_slave()
1292 if (new_active) { in bond_change_active_slave()
1293 new_active->last_link_up = jiffies; in bond_change_active_slave()
1295 if (new_active->link == BOND_LINK_BACK) { in bond_change_active_slave()
1297 slave_info(bond->dev, new_active->dev, "making interface the new active one %d ms earlier\n", in bond_change_active_slave()
1298 (bond->params.updelay - new_active->delay) * bond->params.miimon); in bond_change_active_slave()
1301 new_active->delay = 0; in bond_change_active_slave()
1302 bond_set_slave_link_state(new_active, BOND_LINK_UP, in bond_change_active_slave()
1306 bond_3ad_handle_link_change(new_active, BOND_LINK_UP); in bond_change_active_slave()
1309 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP); in bond_change_active_slave()
1312 slave_info(bond->dev, new_active->dev, "making interface the new active one\n"); in bond_change_active_slave()
1317 bond_hw_addr_swap(bond, new_active, old_active); in bond_change_active_slave()
1320 bond_alb_handle_active_change(bond, new_active); in bond_change_active_slave()
1324 if (new_active) in bond_change_active_slave()
1325 bond_set_slave_active_flags(new_active, in bond_change_active_slave()
1328 rcu_assign_pointer(bond->curr_active_slave, new_active); in bond_change_active_slave()
1336 if (new_active) { in bond_change_active_slave()
1339 bond_set_slave_active_flags(new_active, in bond_change_active_slave()
1343 bond_do_fail_over_mac(bond, new_active, in bond_change_active_slave()
1373 ((bond_uses_primary(bond) && new_active) || in bond_change_active_slave()