From: Danny Kukawka Date: Fri, 17 Feb 2012 05:43:26 +0000 (+0000) Subject: igbvf: reset netdevice addr_assign_type if changed X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=067fb4c81944f8965a08cd91c0a1d66ccd09feea;p=deliverable%2Flinux.git igbvf: reset netdevice addr_assign_type if changed Reset the state of addr_assign_type to NET_ADDR_PERM as soon as the MAC get changed via .ndo_set_mac_address. v2: use bitops to reset addr_assign_type Signed-off-by: Danny Kukawka Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/intel/igbvf/netdev.c b/drivers/net/ethernet/intel/igbvf/netdev.c index 92956e80fd1b..217c143686d2 100644 --- a/drivers/net/ethernet/intel/igbvf/netdev.c +++ b/drivers/net/ethernet/intel/igbvf/netdev.c @@ -1712,6 +1712,7 @@ static int igbvf_set_mac(struct net_device *netdev, void *p) return -EADDRNOTAVAIL; memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); + netdev->addr_assign_type &= ~NET_ADDR_RANDOM; return 0; }