mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 04:42:12 +00:00
[IPV6]: ROUTE: Clean up rt6_select() code path in ip6_route_{intput,output}().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
118f8c1654
commit
1ddef044ed
@ -426,18 +426,12 @@ relookup:
|
|||||||
restart:
|
restart:
|
||||||
rt = fn->leaf;
|
rt = fn->leaf;
|
||||||
|
|
||||||
if ((rt->rt6i_flags & RTF_CACHE)) {
|
|
||||||
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict | RT6_SELECT_F_REACHABLE);
|
|
||||||
if (rt == &ip6_null_entry)
|
|
||||||
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict);
|
|
||||||
BACKTRACK();
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict | RT6_SELECT_F_REACHABLE);
|
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict | RT6_SELECT_F_REACHABLE);
|
||||||
if (rt == &ip6_null_entry)
|
if (rt == &ip6_null_entry)
|
||||||
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict);
|
rt = rt6_select(&fn->leaf, skb->dev->ifindex, strict);
|
||||||
BACKTRACK();
|
BACKTRACK();
|
||||||
|
if ((rt->rt6i_flags & RTF_CACHE))
|
||||||
|
goto out;
|
||||||
|
|
||||||
dst_hold(&rt->u.dst);
|
dst_hold(&rt->u.dst);
|
||||||
read_unlock_bh(&rt6_lock);
|
read_unlock_bh(&rt6_lock);
|
||||||
@ -498,25 +492,12 @@ relookup:
|
|||||||
fn = fib6_lookup(&ip6_routing_table, &fl->fl6_dst, &fl->fl6_src);
|
fn = fib6_lookup(&ip6_routing_table, &fl->fl6_dst, &fl->fl6_src);
|
||||||
|
|
||||||
restart:
|
restart:
|
||||||
rt = fn->leaf;
|
rt = rt6_select(&fn->leaf, fl->oif, strict | RT6_SELECT_F_REACHABLE);
|
||||||
|
if (rt == &ip6_null_entry)
|
||||||
if ((rt->rt6i_flags & RTF_CACHE)) {
|
rt = rt6_select(&fn->leaf, fl->oif, strict);
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict | RT6_SELECT_F_REACHABLE);
|
BACKTRACK();
|
||||||
if (rt == &ip6_null_entry)
|
if ((rt->rt6i_flags & RTF_CACHE))
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict);
|
|
||||||
BACKTRACK();
|
|
||||||
goto out;
|
goto out;
|
||||||
}
|
|
||||||
if (rt->rt6i_flags & RTF_DEFAULT) {
|
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict | RT6_SELECT_F_REACHABLE);
|
|
||||||
if (rt == &ip6_null_entry)
|
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict);
|
|
||||||
} else {
|
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict | RT6_SELECT_F_REACHABLE);
|
|
||||||
if (rt == &ip6_null_entry)
|
|
||||||
rt = rt6_select(&fn->leaf, fl->oif, strict);
|
|
||||||
BACKTRACK();
|
|
||||||
}
|
|
||||||
|
|
||||||
dst_hold(&rt->u.dst);
|
dst_hold(&rt->u.dst);
|
||||||
read_unlock_bh(&rt6_lock);
|
read_unlock_bh(&rt6_lock);
|
||||||
|
Loading…
Reference in New Issue
Block a user