提交 dffe4f04 编写于 作者: M Micah Gruber 提交者: David S. Miller

[IPV6]: Remove unneeded pointer idev from addrconf_cleanup().

This trivial patch removes the unneeded pointer idev returned from
__in6_dev_get(), which is never used. The check for NULL can be simply
done by if (__in6_dev_get(dev) == NULL).
Signed-off-by: NMicah Gruber <micah.gruber@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 ed8b548c
...@@ -4243,7 +4243,6 @@ int __init addrconf_init(void) ...@@ -4243,7 +4243,6 @@ int __init addrconf_init(void)
void __exit addrconf_cleanup(void) void __exit addrconf_cleanup(void)
{ {
struct net_device *dev; struct net_device *dev;
struct inet6_dev *idev;
struct inet6_ifaddr *ifa; struct inet6_ifaddr *ifa;
int i; int i;
...@@ -4261,7 +4260,7 @@ void __exit addrconf_cleanup(void) ...@@ -4261,7 +4260,7 @@ void __exit addrconf_cleanup(void)
*/ */
for_each_netdev(dev) { for_each_netdev(dev) {
if ((idev = __in6_dev_get(dev)) == NULL) if (__in6_dev_get(dev) == NULL)
continue; continue;
addrconf_ifdown(dev, 1); addrconf_ifdown(dev, 1);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册