net/i40e: fix setting of MAC address on i40evf

When setting the MAC address, the ethdev layer copies the new mac
address in dev->data->mac_addrs[0] before calling the dev_ops.

Therefore, "is_same_ether_addr(mac_addr, dev->data->mac_addrs)" was
always true, and the MAC was never set. Remove this test to fix the
issue.

Fixes: 943c2d899a0c ("net/i40e: set VF MAC from VF")
Cc: stable@dpdk.org

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Beilei Xing <beilei.xing@intel.com>
This commit is contained in:
Olivier Matz 2018-01-03 14:34:18 +01:00 committed by Ferruh Yigit
parent feca6c428a
commit b8a0cebdda

View File

@ -2664,9 +2664,6 @@ i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
return;
}
if (is_same_ether_addr(mac_addr, dev->data->mac_addrs))
return;
if (vf->flags & I40E_FLAG_VF_MAC_BY_PF)
return;