Skip to content

Commit

Permalink
[IPV6] ROUTE: Purge clones on other trees when deleting a route.
Browse files Browse the repository at this point in the history
Based on MIPL2 kernel patch.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Ville Nuorvala <vnuorval@tcs.hut.fi
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
YOSHIFUJI Hideaki authored and David S. Miller committed Sep 22, 2006
1 parent 982f56f commit 150730d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions net/ipv6/ip6_fib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1169,8 +1169,18 @@ int fib6_del(struct rt6_info *rt, struct nl_info *info)

BUG_TRAP(fn->fn_flags&RTN_RTINFO);

if (!(rt->rt6i_flags&RTF_CACHE))
fib6_prune_clones(fn, rt);
if (!(rt->rt6i_flags&RTF_CACHE)) {
struct fib6_node *pn = fn;
#ifdef CONFIG_IPV6_SUBTREES
/* clones of this route might be in another subtree */
if (rt->rt6i_src.plen) {
while (!(pn->fn_flags&RTN_ROOT))
pn = pn->parent;
pn = pn->parent;
}
#endif
fib6_prune_clones(pn, rt);
}

/*
* Walk the leaf entries looking for ourself
Expand Down

0 comments on commit 150730d

Please sign in to comment.