aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm
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/xfrm
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/xfrm')
-rw-r--r--net/xfrm/xfrm_policy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c
index a76280a14e72..95dc581861e8 100644
--- a/net/xfrm/xfrm_policy.c
+++ b/net/xfrm/xfrm_policy.c
@@ -1934,7 +1934,7 @@ static int stale_bundle(struct dst_entry *dst)
1934void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev) 1934void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
1935{ 1935{
1936 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) { 1936 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
1937 dst->dev = init_net.loopback_dev; 1937 dst->dev = dev->nd_net->loopback_dev;
1938 dev_hold(dst->dev); 1938 dev_hold(dst->dev);
1939 dev_put(dev); 1939 dev_put(dev);
1940 } 1940 }