]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
bonding: fail_over_mac should only affect AB mode in bond_set_mac_address()
authordingtianhong <dingtianhong@huawei.com>
Sat, 25 Jan 2014 05:00:57 +0000 (13:00 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 5 Feb 2014 03:47:27 +0000 (19:47 -0800)
The fail_over_mac could be set to active or follow in any time for all modes,
so if the fail_over_mac is not none and the current mode is not active-backup,
the bond_set_mac_address() could not change the master and slave's MAC address.

In bond_set_mac_address(), the fail_over_mac should only affect AB mode, so modify
to check the mode in addition to fail_over_mac when setting bond's MAC address.

Cc: Jay Vosburgh <fubar@us.ibm.com>
Cc: Veaceslav Falico <vfalico@redhat.com>
Cc: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c

index 8e6dd13b36076670203a4f12329e5ff6a192ec2b..35f7e90aef7286f8b1587cd6c3cebd26e5c085a5 100644 (file)
@@ -3439,7 +3439,8 @@ static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
        /* If fail_over_mac is enabled, do nothing and return success.
         * Returning an error causes ifenslave to fail.
         */
-       if (bond->params.fail_over_mac)
+       if (bond->params.fail_over_mac &&
+           bond->params.mode == BOND_MODE_ACTIVEBACKUP)
                return 0;
 
        if (!is_valid_ether_addr(sa->sa_data))