]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
ipv6: Use ip6_dst_hoplimit() instead of direct dst_metric() calls.
authorDavid S. Miller <davem@davemloft.net>
Mon, 13 Dec 2010 05:14:46 +0000 (21:14 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 13 Dec 2010 05:14:46 +0000 (21:14 -0800)
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/netfilter/ip6t_REJECT.c
net/ipv6/route.c
net/ipv6/xfrm6_mode_tunnel.c

index 2933396e02814c4020a5247f04815811b8867ee6..bf998feac14e04251542c430f3888ab3d05a2fb3 100644 (file)
@@ -124,7 +124,7 @@ static void send_reset(struct net *net, struct sk_buff *oldskb)
        skb_reset_network_header(nskb);
        ip6h = ipv6_hdr(nskb);
        ip6h->version = 6;
-       ip6h->hop_limit = dst_metric(dst, RTAX_HOPLIMIT);
+       ip6h->hop_limit = ip6_dst_hoplimit(dst);
        ip6h->nexthdr = IPPROTO_TCP;
        ipv6_addr_copy(&ip6h->saddr, &oip6h->daddr);
        ipv6_addr_copy(&ip6h->daddr, &oip6h->saddr);
index 4aed0812b512e0bf9cc628086b9de2b33667d518..9b2d7bc7beda4679ffd2a64e911d6c69ad9a2b4e 100644 (file)
@@ -1119,6 +1119,7 @@ int ip6_dst_hoplimit(struct dst_entry *dst)
        }
        return hoplimit;
 }
+EXPORT_SYMBOL(ip6_dst_hoplimit);
 
 /*
  *
index b809812c8d30a85b13732fd2071d524da6a81807..645cb968d450442cca7ff315fefda343c8e1285d 100644 (file)
@@ -14,6 +14,7 @@
 #include <net/dsfield.h>
 #include <net/dst.h>
 #include <net/inet_ecn.h>
+#include <net/ip6_route.h>
 #include <net/ipv6.h>
 #include <net/xfrm.h>
 
@@ -53,7 +54,7 @@ static int xfrm6_mode_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
        if (x->props.flags & XFRM_STATE_NOECN)
                dsfield &= ~INET_ECN_MASK;
        ipv6_change_dsfield(top_iph, 0, dsfield);
-       top_iph->hop_limit = dst_metric(dst->child, RTAX_HOPLIMIT);
+       top_iph->hop_limit = ip6_dst_hoplimit(dst->child);
        ipv6_addr_copy(&top_iph->saddr, (struct in6_addr *)&x->props.saddr);
        ipv6_addr_copy(&top_iph->daddr, (struct in6_addr *)&x->id.daddr);
        return 0;