aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2007-12-07 03:38:10 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:56:44 -0500
commit5a3e55d68ec5baac578bf32ba67607088c763657 (patch)
tree9e8f9dfae66c8a85735122ece8a9c85cdb5c31c4 /net/ipv6/route.c
parentb84a2189c4e1835c51fd6b974a0497be9bc4ba87 (diff)
[NET]: Multiple namespaces in the all dst_ifdown routines.
Move dst entries to a namespace loopback to catch refcounting leaks. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index e2c980dbe52d..452111fa4c52 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -216,9 +216,12 @@ static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
216{ 216{
217 struct rt6_info *rt = (struct rt6_info *)dst; 217 struct rt6_info *rt = (struct rt6_info *)dst;
218 struct inet6_dev *idev = rt->rt6i_idev; 218 struct inet6_dev *idev = rt->rt6i_idev;
219 struct net_device *loopback_dev =
220 dev->nd_net->loopback_dev;
219 221
220 if (dev != init_net.loopback_dev && idev != NULL && idev->dev == dev) { 222 if (dev != loopback_dev && idev != NULL && idev->dev == dev) {
221 struct inet6_dev *loopback_idev = in6_dev_get(init_net.loopback_dev); 223 struct inet6_dev *loopback_idev =
224 in6_dev_get(loopback_dev);
222 if (loopback_idev != NULL) { 225 if (loopback_idev != NULL) {
223 rt->rt6i_idev = loopback_idev; 226 rt->rt6i_idev = loopback_idev;
224 in6_dev_put(idev); 227 in6_dev_put(idev);