diff options
author | David Stevens <dlstevens@us.ibm.com> | 2007-02-26 16:28:56 -0800 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2007-08-25 17:24:17 +0200 |
commit | ac82581f098be0d3f6ef011d2b168181f4f79a0e (patch) | |
tree | a44cc47a62ff78ff7518e121976793eff089302e /net | |
parent | 8c25e9c9cd1fed0d5f57075b584c39a4b9af9830 (diff) |
[PATCH] IPV6: /proc/net/anycast6 unbalanced inet6_dev refcnt
Reading /proc/net/anycast6 when there is no anycast address
on an interface results in an ever-increasing inet6_dev reference
count, as well as a reference to the netdevice you can't get rid of.
Signed-off-by: David S. Miller <davem@davemloft.net>
Cc: Marcus Meissner <meissner@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/anycast.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/anycast.c b/net/ipv6/anycast.c index fe0c895d03a..7cf524847e2 100644 --- a/net/ipv6/anycast.c +++ b/net/ipv6/anycast.c @@ -67,6 +67,7 @@ ip6_onlink(struct in6_addr *addr, struct net_device *dev) break; } read_unlock_bh(&idev->lock); + in6_dev_put(idev); } rcu_read_unlock(); return onlink; |