diff options
author | Stefan Assmann <sassmann@redhat.com> | 2010-07-26 19:24:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-27 16:18:14 -0400 |
commit | 2c6952dfdda2f266f2f501792b8d6413caf25f7a (patch) | |
tree | ae6f4e19306b7909a859ee3a218a6111f89e3e99 /drivers/net/igbvf | |
parent | 56075a98dfb887981ee0e4b6a768cd53f2514f4c (diff) |
igbvf, ixgbevf: use dev_hw_addr_random
Both igbvf and ixgbevf should set addr_assign_type to NET_ADDR_RANDOM
so udev creates persistent net rules by matching the device path.
Do this by using the dev_hw_addr_random helper function.
Signed-off-by: Stefan Assmann <sassmann@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igbvf')
-rw-r--r-- | drivers/net/igbvf/netdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index 5e2b2a8c56c6..048595bc79ad 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c | |||
@@ -2751,7 +2751,7 @@ static int __devinit igbvf_probe(struct pci_dev *pdev, | |||
2751 | dev_info(&pdev->dev, | 2751 | dev_info(&pdev->dev, |
2752 | "PF still in reset state, assigning new address." | 2752 | "PF still in reset state, assigning new address." |
2753 | " Is the PF interface up?\n"); | 2753 | " Is the PF interface up?\n"); |
2754 | random_ether_addr(hw->mac.addr); | 2754 | dev_hw_addr_random(adapter->netdev, hw->mac.addr); |
2755 | } else { | 2755 | } else { |
2756 | err = hw->mac.ops.read_mac_addr(hw); | 2756 | err = hw->mac.ops.read_mac_addr(hw); |
2757 | if (err) { | 2757 | if (err) { |