dect
/
linux-2.6
Archived
13
0
Fork 0

[NETNS]: network namespace was passed into dev_getbyhwaddr but not used

Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Denis V. Lunev 2007-12-12 10:47:38 -08:00 committed by David S. Miller
parent 41380930d2
commit 81103a52f2
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *h
ASSERT_RTNL();
for_each_netdev(&init_net, dev)
for_each_netdev(net, dev)
if (dev->type == type &&
!memcmp(dev->dev_addr, ha, dev->addr_len))
return dev;