diff options
author | Vlad Yasevich <vyasevich@gmail.com> | 2017-06-21 07:59:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-22 11:17:41 -0400 |
commit | e26f43faa0d79dd06e9e94829696b68b9940c2ee (patch) | |
tree | 2563af55925c20e73e99e5c72bf7edd42a1ae930 /drivers/net/macvlan.c | |
parent | dfa523ae9f2542bee4cddaea37b3be3e157f6e6b (diff) |
macvlan: Do not return error when setting the same mac address
The user currently gets an EBUSY error when attempting to set
the mac address on a macvlan device to the same value.
This should really be a no-op as nothing changes. Catch
the condition and return early.
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 67bf7ebae5c6..de214fbda173 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -703,6 +703,10 @@ static int macvlan_set_mac_address(struct net_device *dev, void *p) | |||
703 | if (!is_valid_ether_addr(addr->sa_data)) | 703 | if (!is_valid_ether_addr(addr->sa_data)) |
704 | return -EADDRNOTAVAIL; | 704 | return -EADDRNOTAVAIL; |
705 | 705 | ||
706 | /* If the addresses are the same, this is a no-op */ | ||
707 | if (ether_addr_equal(dev->dev_addr, addr->sa_data)) | ||
708 | return 0; | ||
709 | |||
706 | if (vlan->mode == MACVLAN_MODE_PASSTHRU) { | 710 | if (vlan->mode == MACVLAN_MODE_PASSTHRU) { |
707 | dev_set_mac_address(vlan->lowerdev, addr); | 711 | dev_set_mac_address(vlan->lowerdev, addr); |
708 | return 0; | 712 | return 0; |