diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-17 06:29:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-17 06:29:28 -0400 |
commit | 6700c2709c08d74ae2c3c29b84a30da012dbc7f1 (patch) | |
tree | 1d44f300ec3cf5f9845fba7a25491e33d666426f /net/ipv6/ip6_tunnel.c | |
parent | 02f3d4ce9e81434a365f4643020b0402f6fe3332 (diff) |
net: Pass optional SKB and SK arguments to dst_ops->{update_pmtu,redirect}()
This will be used so that we can compose a full flow key.
Even though we have a route in this context, we need more. In the
future the routes will be without destination address, source address,
etc. keying. One ipv4 route will cover entire subnets, etc.
In this environment we have to have a way to possess persistent storage
for redirects and PMTU information. This persistent storage will exist
in the FIB tables, and that's why we'll need to be able to rebuild a
full lookup flow key here. Using that flow key will do a fib_lookup()
and create/update the persistent entry.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index 61d106597296..db3284667968 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c | |||
@@ -609,10 +609,10 @@ ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
609 | if (rel_info > dst_mtu(skb_dst(skb2))) | 609 | if (rel_info > dst_mtu(skb_dst(skb2))) |
610 | goto out; | 610 | goto out; |
611 | 611 | ||
612 | skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), rel_info); | 612 | skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info); |
613 | } | 613 | } |
614 | if (rel_type == ICMP_REDIRECT) | 614 | if (rel_type == ICMP_REDIRECT) |
615 | skb_dst(skb2)->ops->redirect(skb_dst(skb2), skb2); | 615 | skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2); |
616 | 616 | ||
617 | icmp_send(skb2, rel_type, rel_code, htonl(rel_info)); | 617 | icmp_send(skb2, rel_type, rel_code, htonl(rel_info)); |
618 | 618 | ||
@@ -952,7 +952,7 @@ static int ip6_tnl_xmit2(struct sk_buff *skb, | |||
952 | if (mtu < IPV6_MIN_MTU) | 952 | if (mtu < IPV6_MIN_MTU) |
953 | mtu = IPV6_MIN_MTU; | 953 | mtu = IPV6_MIN_MTU; |
954 | if (skb_dst(skb)) | 954 | if (skb_dst(skb)) |
955 | skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu); | 955 | skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu); |
956 | if (skb->len > mtu) { | 956 | if (skb->len > mtu) { |
957 | *pmtu = mtu; | 957 | *pmtu = mtu; |
958 | err = -EMSGSIZE; | 958 | err = -EMSGSIZE; |