diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-12 00:29:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-12 18:08:44 -0500 |
commit | 1d28f42c1bd4bb2363d88df74d0128b4da135b4a (patch) | |
tree | cb2e652fe79a2bc307e871bc2d3fa51cc8051e45 /net/ipv6/route.c | |
parent | ca116922afa8cc5ad46b00c0a637b1cde5ca478a (diff) |
net: Put flowi_* prefix on AF independent members of struct flowi
I intend to turn struct flowi into a union of AF specific flowi
structs. There will be a common structure that each variant includes
first, much like struct sock_common.
This is the first step to move in that direction.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 001276055a6b..c3b20d63921f 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -608,7 +608,7 @@ static struct rt6_info *ip6_pol_route_lookup(struct net *net, | |||
608 | fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src); | 608 | fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src); |
609 | restart: | 609 | restart: |
610 | rt = fn->leaf; | 610 | rt = fn->leaf; |
611 | rt = rt6_device_match(net, rt, &fl->fl6_src, fl->oif, flags); | 611 | rt = rt6_device_match(net, rt, &fl->fl6_src, fl->flowi_oif, flags); |
612 | BACKTRACK(net, &fl->fl6_src); | 612 | BACKTRACK(net, &fl->fl6_src); |
613 | out: | 613 | out: |
614 | dst_use(&rt->dst, jiffies); | 614 | dst_use(&rt->dst, jiffies); |
@@ -621,7 +621,7 @@ struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, | |||
621 | const struct in6_addr *saddr, int oif, int strict) | 621 | const struct in6_addr *saddr, int oif, int strict) |
622 | { | 622 | { |
623 | struct flowi fl = { | 623 | struct flowi fl = { |
624 | .oif = oif, | 624 | .flowi_oif = oif, |
625 | .fl6_dst = *daddr, | 625 | .fl6_dst = *daddr, |
626 | }; | 626 | }; |
627 | struct dst_entry *dst; | 627 | struct dst_entry *dst; |
@@ -825,7 +825,7 @@ out2: | |||
825 | static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table, | 825 | static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table, |
826 | struct flowi *fl, int flags) | 826 | struct flowi *fl, int flags) |
827 | { | 827 | { |
828 | return ip6_pol_route(net, table, fl->iif, fl, flags); | 828 | return ip6_pol_route(net, table, fl->flowi_iif, fl, flags); |
829 | } | 829 | } |
830 | 830 | ||
831 | void ip6_route_input(struct sk_buff *skb) | 831 | void ip6_route_input(struct sk_buff *skb) |
@@ -834,12 +834,12 @@ void ip6_route_input(struct sk_buff *skb) | |||
834 | struct net *net = dev_net(skb->dev); | 834 | struct net *net = dev_net(skb->dev); |
835 | int flags = RT6_LOOKUP_F_HAS_SADDR; | 835 | int flags = RT6_LOOKUP_F_HAS_SADDR; |
836 | struct flowi fl = { | 836 | struct flowi fl = { |
837 | .iif = skb->dev->ifindex, | 837 | .flowi_iif = skb->dev->ifindex, |
838 | .fl6_dst = iph->daddr, | 838 | .fl6_dst = iph->daddr, |
839 | .fl6_src = iph->saddr, | 839 | .fl6_src = iph->saddr, |
840 | .fl6_flowlabel = (* (__be32 *) iph)&IPV6_FLOWINFO_MASK, | 840 | .fl6_flowlabel = (* (__be32 *) iph)&IPV6_FLOWINFO_MASK, |
841 | .mark = skb->mark, | 841 | .flowi_mark = skb->mark, |
842 | .proto = iph->nexthdr, | 842 | .flowi_proto = iph->nexthdr, |
843 | }; | 843 | }; |
844 | 844 | ||
845 | if (rt6_need_strict(&iph->daddr) && skb->dev->type != ARPHRD_PIMREG) | 845 | if (rt6_need_strict(&iph->daddr) && skb->dev->type != ARPHRD_PIMREG) |
@@ -851,7 +851,7 @@ void ip6_route_input(struct sk_buff *skb) | |||
851 | static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table, | 851 | static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table, |
852 | struct flowi *fl, int flags) | 852 | struct flowi *fl, int flags) |
853 | { | 853 | { |
854 | return ip6_pol_route(net, table, fl->oif, fl, flags); | 854 | return ip6_pol_route(net, table, fl->flowi_oif, fl, flags); |
855 | } | 855 | } |
856 | 856 | ||
857 | struct dst_entry * ip6_route_output(struct net *net, struct sock *sk, | 857 | struct dst_entry * ip6_route_output(struct net *net, struct sock *sk, |
@@ -1484,7 +1484,7 @@ restart: | |||
1484 | continue; | 1484 | continue; |
1485 | if (!(rt->rt6i_flags & RTF_GATEWAY)) | 1485 | if (!(rt->rt6i_flags & RTF_GATEWAY)) |
1486 | continue; | 1486 | continue; |
1487 | if (fl->oif != rt->rt6i_dev->ifindex) | 1487 | if (fl->flowi_oif != rt->rt6i_dev->ifindex) |
1488 | continue; | 1488 | continue; |
1489 | if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway)) | 1489 | if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway)) |
1490 | continue; | 1490 | continue; |
@@ -1511,7 +1511,7 @@ static struct rt6_info *ip6_route_redirect(struct in6_addr *dest, | |||
1511 | struct net *net = dev_net(dev); | 1511 | struct net *net = dev_net(dev); |
1512 | struct ip6rd_flowi rdfl = { | 1512 | struct ip6rd_flowi rdfl = { |
1513 | .fl = { | 1513 | .fl = { |
1514 | .oif = dev->ifindex, | 1514 | .flowi_oif = dev->ifindex, |
1515 | .fl6_dst = *dest, | 1515 | .fl6_dst = *dest, |
1516 | .fl6_src = *src, | 1516 | .fl6_src = *src, |
1517 | }, | 1517 | }, |
@@ -2413,7 +2413,7 @@ static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void | |||
2413 | iif = nla_get_u32(tb[RTA_IIF]); | 2413 | iif = nla_get_u32(tb[RTA_IIF]); |
2414 | 2414 | ||
2415 | if (tb[RTA_OIF]) | 2415 | if (tb[RTA_OIF]) |
2416 | fl.oif = nla_get_u32(tb[RTA_OIF]); | 2416 | fl.flowi_oif = nla_get_u32(tb[RTA_OIF]); |
2417 | 2417 | ||
2418 | if (iif) { | 2418 | if (iif) { |
2419 | struct net_device *dev; | 2419 | struct net_device *dev; |