Lines Matching refs:new_active

841 static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active,  in bond_hw_addr_swap()  argument
855 if (new_active) { in bond_hw_addr_swap()
858 dev_set_promiscuity(new_active->dev, 1); in bond_hw_addr_swap()
861 dev_set_allmulti(new_active->dev, 1); in bond_hw_addr_swap()
865 dev_uc_sync(new_active->dev, bond->dev); in bond_hw_addr_swap()
866 dev_mc_sync(new_active->dev, bond->dev); in bond_hw_addr_swap()
897 struct slave *new_active) in bond_get_old_active() argument
903 if (slave == new_active) in bond_get_old_active()
920 struct slave *new_active, in bond_do_fail_over_mac() argument
929 if (new_active) { in bond_do_fail_over_mac()
930 rv = bond_set_dev_addr(bond->dev, new_active->dev); in bond_do_fail_over_mac()
932 slave_err(bond->dev, new_active->dev, "Error %d setting bond MAC from slave\n", in bond_do_fail_over_mac()
941 if (!new_active) in bond_do_fail_over_mac()
945 old_active = bond_get_old_active(bond, new_active); in bond_do_fail_over_mac()
948 bond_hw_addr_copy(tmp_mac, new_active->dev->dev_addr, in bond_do_fail_over_mac()
949 new_active->dev->addr_len); in bond_do_fail_over_mac()
953 ss.ss_family = new_active->dev->type; in bond_do_fail_over_mac()
960 rv = dev_set_mac_address(new_active->dev, in bond_do_fail_over_mac()
963 slave_err(bond->dev, new_active->dev, "Error %d setting MAC of new active slave\n", in bond_do_fail_over_mac()
972 new_active->dev->addr_len); in bond_do_fail_over_mac()
1091 void bond_change_active_slave(struct bonding *bond, struct slave *new_active) in bond_change_active_slave() argument
1099 if (old_active == new_active) in bond_change_active_slave()
1106 if (new_active) { in bond_change_active_slave()
1107 new_active->last_link_up = jiffies; in bond_change_active_slave()
1109 if (new_active->link == BOND_LINK_BACK) { in bond_change_active_slave()
1111 slave_info(bond->dev, new_active->dev, "making interface the new active one %d ms earlier\n", in bond_change_active_slave()
1112 (bond->params.updelay - new_active->delay) * bond->params.miimon); in bond_change_active_slave()
1115 new_active->delay = 0; in bond_change_active_slave()
1116 bond_set_slave_link_state(new_active, BOND_LINK_UP, in bond_change_active_slave()
1120 bond_3ad_handle_link_change(new_active, BOND_LINK_UP); in bond_change_active_slave()
1123 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP); in bond_change_active_slave()
1126 slave_info(bond->dev, new_active->dev, "making interface the new active one\n"); in bond_change_active_slave()
1132 bond_hw_addr_swap(bond, new_active, old_active); in bond_change_active_slave()
1135 bond_alb_handle_active_change(bond, new_active); in bond_change_active_slave()
1139 if (new_active) in bond_change_active_slave()
1140 bond_set_slave_active_flags(new_active, in bond_change_active_slave()
1143 rcu_assign_pointer(bond->curr_active_slave, new_active); in bond_change_active_slave()
1151 if (new_active) { in bond_change_active_slave()
1154 bond_set_slave_active_flags(new_active, in bond_change_active_slave()
1158 bond_do_fail_over_mac(bond, new_active, in bond_change_active_slave()
1188 ((bond_uses_primary(bond) && new_active) || in bond_change_active_slave()