Lines Matching full:slaves

21  *	the first slave bonded to the channel.  All slaves will then use
25 * will release all slaves, marking them as down.
187 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
192 "by setting active flag for all slaves; "
204 "each slaves peer switch. The default is 1.");
363 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
397 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
642 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
795 /* Push the promiscuity flag down to appropriate slaves */
818 /* Push the allmulti flag down to all slaves */
879 * old active slaves (if any). Modes that are not using primary keep all
880 * slaves up date at all times; only the modes that use primary need to call
1525 /* On bonding slaves other than the currently active slave, suppress
1896 * bond ether type mutual exclusion - don't allow slaves of dissimilar in bond_enslave()
1926 "Device type is different from other slaves"); in bond_enslave()
1933 "Only active-backup mode is supported for infiniband slaves"); in bond_enslave()
2121 * will activate the slaves in the selected in bond_enslave()
2351 * while destroying a bond interface and all slaves are being released.
2535 /* First release a slave and then destroy the bond if no more slaves are left.
3131 * Note: for (b), backup slaves are receiving the broadcast ARP in bond_arp_rcv()
3476 * do - all replies will be rx'ed on same link causing slaves in bond_loadbalance_arp_mon()
3513 /* Called to inspect slaves for active-backup mode ARP monitor link state
3514 * changes. Sets proposed link state in slaves to specify what action
3542 /* Give slaves 2*delta after being enslaved or made in bond_ab_arp_inspect()
3931 /* TODO: Should slaves be allowed to in bond_slave_netdev_event()
3933 * an active-backup bond, slaves need in bond_slave_netdev_event()
3936 * slaves arguably should have the in bond_slave_netdev_event()
4680 /* Change the MTU of all of a master's slaves to match the master */
4699 * mode, because if we allow the backup slaves to have in bond_change_mtu()
4735 * downing the master releases all slaves. We can make bonds full of
5017 static void bond_skip_slave(struct bond_up_slave *slaves, in bond_skip_slave() argument
5030 for (idx = 0; slaves && idx < slaves->count; idx++) { in bond_skip_slave()
5031 if (skipslave == slaves->arr[idx]) { in bond_skip_slave()
5032 slaves->arr[idx] = in bond_skip_slave()
5033 slaves->arr[slaves->count - 1]; in bond_skip_slave()
5034 slaves->count--; in bond_skip_slave()
5060 /* Build the usable slaves array in control path for modes that use xmit-hash
5140 struct bond_up_slave *slaves) in bond_xmit_3ad_xor_slave_get() argument
5147 count = slaves ? READ_ONCE(slaves->count) : 0; in bond_xmit_3ad_xor_slave_get()
5151 slave = slaves->arr[hash % count]; in bond_xmit_3ad_xor_slave_get()
5158 struct bond_up_slave *slaves; in bond_xdp_xmit_3ad_xor_slave_get() local
5163 slaves = rcu_dereference(bond->usable_slaves); in bond_xdp_xmit_3ad_xor_slave_get()
5164 count = slaves ? READ_ONCE(slaves->count) : 0; in bond_xdp_xmit_3ad_xor_slave_get()
5168 return slaves->arr[hash % count]; in bond_xdp_xmit_3ad_xor_slave_get()
5179 struct bond_up_slave *slaves; in bond_3ad_xor_xmit() local
5182 slaves = rcu_dereference(bond->usable_slaves); in bond_3ad_xor_xmit()
5183 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); in bond_3ad_xor_xmit()
5244 /* Find out if any slaves have the same mapping as this skb. */ in bond_slave_override()
5287 struct bond_up_slave *slaves; in bond_xmit_get_slave() local
5300 slaves = rcu_dereference(bond->all_slaves); in bond_xmit_get_slave()
5302 slaves = rcu_dereference(bond->usable_slaves); in bond_xmit_get_slave()
5303 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); in bond_xmit_get_slave()
5373 struct bond_up_slave *slaves; in __bond_sk_get_lower_dev() local
5378 slaves = rcu_dereference(bond->usable_slaves); in __bond_sk_get_lower_dev()
5379 count = slaves ? READ_ONCE(slaves->count) : 0; in __bond_sk_get_lower_dev()
5384 slave = slaves->arr[hash % count]; in __bond_sk_get_lower_dev()
5722 /* Since bond_slave_can_tx returns false for all inactive or down slaves, we in bond_ethtool_get_link_ksettings()
5774 /* Check if all slaves support software tx timestamping */ in bond_ethtool_get_ts_info()
5892 * when there are slaves that are not hw accel in bond_setup()
5927 /* Release the bonded slaves */ in bond_uninit()
5930 netdev_info(bond_dev, "Released all slaves\n"); in bond_uninit()