Lines Matching full:slaves
20 * the first slave bonded to the channel. All slaves will then use
24 * will release all slaves, marking them as down.
179 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
184 "by setting active flag for all slaves; "
196 "each slaves peer switch. The default is 1.");
323 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
357 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
473 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
626 /* Push the promiscuity flag down to appropriate slaves */
649 /* Push the allmulti flag down to all slaves */
714 * old active slaves (if any). Modes that are not using primary keep all
715 * slaves up date at all times; only the modes that use primary need to call
1325 /* On bonding slaves other than the currently active slave, suppress
1633 * bond ether type mutual exclusion - don't allow slaves of dissimilar in bond_enslave()
1664 NL_SET_ERR_MSG(extack, "Device type is different from other slaves"); in bond_enslave()
1665 …slave_err(bond_dev, slave_dev, "ether type (%d) is different from other slaves (%d), can not ensla… in bond_enslave()
1672 NL_SET_ERR_MSG(extack, "Only active-backup mode is supported for infiniband slaves"); in bond_enslave()
1860 * will activate the slaves in the selected in bond_enslave()
2057 * while destroying a bond interface and all slaves are being released.
2226 /* First release a slave and then destroy the bond if no more slaves are left.
2805 * Note: for (b), backup slaves are receiving the broadcast ARP in bond_arp_rcv()
2922 * do - all replies will be rx'ed on same link causing slaves in bond_loadbalance_arp_mon()
2959 /* Called to inspect slaves for active-backup mode ARP monitor link state
2960 * changes. Sets proposed link state in slaves to specify what action
2988 /* Give slaves 2*delta after being enslaved or made in bond_ab_arp_inspect()
3369 /* TODO: Should slaves be allowed to in bond_slave_netdev_event()
3371 * an active-backup bond, slaves need in bond_slave_netdev_event()
3374 * slaves arguably should have the in bond_slave_netdev_event()
3966 /* Change the MTU of all of a master's slaves to match the master */
3985 * mode, because if we allow the backup slaves to have in bond_change_mtu()
4021 * downing the master releases all slaves. We can make bonds full of
4263 static void bond_skip_slave(struct bond_up_slave *slaves, in bond_skip_slave() argument
4276 for (idx = 0; slaves && idx < slaves->count; idx++) { in bond_skip_slave()
4277 if (skipslave == slaves->arr[idx]) { in bond_skip_slave()
4278 slaves->arr[idx] = in bond_skip_slave()
4279 slaves->arr[slaves->count - 1]; in bond_skip_slave()
4280 slaves->count--; in bond_skip_slave()
4318 /* Build the usable slaves array in control path for modes that use xmit-hash
4397 struct bond_up_slave *slaves) in bond_xmit_3ad_xor_slave_get() argument
4404 count = slaves ? READ_ONCE(slaves->count) : 0; in bond_xmit_3ad_xor_slave_get()
4408 slave = slaves->arr[hash % count]; in bond_xmit_3ad_xor_slave_get()
4420 struct bond_up_slave *slaves; in bond_3ad_xor_xmit() local
4423 slaves = rcu_dereference(bond->usable_slaves); in bond_3ad_xor_xmit()
4424 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); in bond_3ad_xor_xmit()
4471 /* Find out if any slaves have the same mapping as this skb. */ in bond_slave_override()
4514 struct bond_up_slave *slaves; in bond_xmit_get_slave() local
4527 slaves = rcu_dereference(bond->all_slaves); in bond_xmit_get_slave()
4529 slaves = rcu_dereference(bond->usable_slaves); in bond_xmit_get_slave()
4530 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); in bond_xmit_get_slave()
4623 /* Since bond_slave_can_tx returns false for all inactive or down slaves, we in bond_ethtool_get_link_ksettings()
4738 * when there are slaves that are not hw accel in bond_setup()
4774 /* Release the bonded slaves */ in bond_uninit()
4777 netdev_info(bond_dev, "Released all slaves\n"); in bond_uninit()