mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
i40e: remove unnecessary check for old MAC == new MAC
The check has been moved to core. The ndo_set_mac_address callback is not being called with new MAC address equal to the old one anymore. Signed-off-by: Piotr Gardocki <piotrx.gardocki@intel.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
ad72c4a06a
commit
c45a6d1a23
1 changed files with 0 additions and 6 deletions
|
@ -1788,12 +1788,6 @@ static int i40e_set_mac(struct net_device *netdev, void *p)
|
|||
if (!is_valid_ether_addr(addr->sa_data))
|
||||
return -EADDRNOTAVAIL;
|
||||
|
||||
if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
|
||||
netdev_info(netdev, "already using mac address %pM\n",
|
||||
addr->sa_data);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (test_bit(__I40E_DOWN, pf->state) ||
|
||||
test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
|
||||
return -EADDRNOTAVAIL;
|
||||
|
|
Loading…
Add table
Reference in a new issue