mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
net: feed /dev/random with the MAC address when registering a device
commit 7bf2357524
upstream.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: David Miller <davem@davemloft.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ed Tam <etam@google.com>
This commit is contained in:
parent
b7436bfe4a
commit
448f4ec006
2 changed files with 4 additions and 0 deletions
|
@ -1173,6 +1173,7 @@ static int __dev_open(struct net_device *dev)
|
|||
net_dmaengine_get();
|
||||
dev_set_rx_mode(dev);
|
||||
dev_activate(dev);
|
||||
add_device_randomness(dev->dev_addr, dev->addr_len);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
@ -4786,6 +4787,7 @@ int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
|
|||
err = ops->ndo_set_mac_address(dev, sa);
|
||||
if (!err)
|
||||
call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
|
||||
add_device_randomness(dev->dev_addr, dev->addr_len);
|
||||
return err;
|
||||
}
|
||||
EXPORT_SYMBOL(dev_set_mac_address);
|
||||
|
@ -5564,6 +5566,7 @@ int register_netdevice(struct net_device *dev)
|
|||
dev_init_scheduler(dev);
|
||||
dev_hold(dev);
|
||||
list_netdevice(dev);
|
||||
add_device_randomness(dev->dev_addr, dev->addr_len);
|
||||
|
||||
/* Notify protocols, that a new device appeared. */
|
||||
ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
|
||||
|
|
|
@ -1370,6 +1370,7 @@ static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
|
|||
goto errout;
|
||||
send_addr_notify = 1;
|
||||
modified = 1;
|
||||
add_device_randomness(dev->dev_addr, dev->addr_len);
|
||||
}
|
||||
|
||||
if (tb[IFLA_MTU]) {
|
||||
|
|
Loading…
Reference in a new issue