diff options
author | Danny Kukawka <danny.kukawka@bisect.de> | 2012-02-15 01:45:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-02-15 15:34:16 -0500 |
commit | f2cedb63df14342ad40a8b5b324fc5d94a60b665 (patch) | |
tree | bebdbe0f98c216e59849bc3adb85f8abf5aadc2b /net/ipv4 | |
parent | a1e785e02bb53573443c7e58a444cef1a049f6ce (diff) |
net: replace random_ether_addr() with eth_hw_addr_random()
Replace usage of random_ether_addr() with eth_hw_addr_random()
to set addr_assign_type correctly to NET_ADDR_RANDOM.
Change the trivial cases.
v2: adapt to renamed eth_hw_addr_random()
Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ip_gre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 0286d78c589c..b59414a0c1ee 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
@@ -1536,7 +1536,7 @@ static int ipgre_newlink(struct net *src_net, struct net_device *dev, struct nla | |||
1536 | return -EEXIST; | 1536 | return -EEXIST; |
1537 | 1537 | ||
1538 | if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS]) | 1538 | if (dev->type == ARPHRD_ETHER && !tb[IFLA_ADDRESS]) |
1539 | random_ether_addr(dev->dev_addr); | 1539 | eth_hw_addr_random(dev); |
1540 | 1540 | ||
1541 | mtu = ipgre_tunnel_bind_dev(dev); | 1541 | mtu = ipgre_tunnel_bind_dev(dev); |
1542 | if (!tb[IFLA_MTU]) | 1542 | if (!tb[IFLA_MTU]) |