forked from luck/tmp_suning_uos_patched
bonding: use bond_is_lb() when it's appropriate
Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: Jay Vosburgh <fubar@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f22a563b0a
commit
ae63e808f5
|
@ -2405,8 +2405,7 @@ static void bond_miimon_commit(struct bonding *bond)
|
|||
bond_3ad_handle_link_change(slave,
|
||||
BOND_LINK_DOWN);
|
||||
|
||||
if (bond->params.mode == BOND_MODE_TLB ||
|
||||
bond->params.mode == BOND_MODE_ALB)
|
||||
if (bond_is_lb(bond))
|
||||
bond_alb_handle_link_change(bond, slave,
|
||||
BOND_LINK_DOWN);
|
||||
|
||||
|
|
|
@ -286,8 +286,7 @@ static inline unsigned long slave_last_rx(struct bonding *bond,
|
|||
static inline void bond_set_slave_inactive_flags(struct slave *slave)
|
||||
{
|
||||
struct bonding *bond = netdev_priv(slave->dev->master);
|
||||
if (bond->params.mode != BOND_MODE_TLB &&
|
||||
bond->params.mode != BOND_MODE_ALB)
|
||||
if (!bond_is_lb(bond))
|
||||
slave->state = BOND_STATE_BACKUP;
|
||||
slave->dev->priv_flags |= IFF_SLAVE_INACTIVE;
|
||||
if (slave_do_arp_validate(bond, slave))
|
||||
|
|
Loading…
Reference in New Issue
Block a user