diff options
author | David Ahern <dsahern@gmail.com> | 2018-04-19 01:39:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-19 22:40:13 +0300 |
commit | dcd1f572954f9d66d7b4a65df894ed5b4c467368 (patch) | |
tree | b675efd13731ea03461fbf7f66d85bf6a6bf37b6 /net/ipv6/ip6_fib.c | |
parent | 647d4c1363a85bec63ecf929d4ab4aae78b2a960 (diff) | |
download | linux-dcd1f572954f9d66d7b4a65df894ed5b4c467368.tar.xz |
net/ipv6: Remove fib6_idev
fib6_idev can be obtained from __in6_dev_get on the nexthop device
rather than caching it in the fib6_info. Remove it.
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_fib.c')
-rw-r--r-- | net/ipv6/ip6_fib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c index 353f0b3e7b0d..f936e91a8c65 100644 --- a/net/ipv6/ip6_fib.c +++ b/net/ipv6/ip6_fib.c @@ -197,8 +197,6 @@ void fib6_info_destroy(struct fib6_info *f6i) } } - if (f6i->fib6_idev) - in6_dev_put(f6i->fib6_idev); if (f6i->fib6_nh.nh_dev) dev_put(f6i->fib6_nh.nh_dev); |