diff options
author | David S. Miller <davem@davemloft.net> | 2010-12-12 21:35:57 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-12 21:35:57 -0800 |
commit | 5170ae824ddf1988a63fb12cbedcff817634c444 (patch) | |
tree | 9f1619ca6edd0e8078bfcd9d6123e119b935e43b /net/ipv6 | |
parent | abbf46ae0e4954584eac599bec73502c1c805e9e (diff) | |
download | linux-3.10-5170ae824ddf1988a63fb12cbedcff817634c444.tar.gz linux-3.10-5170ae824ddf1988a63fb12cbedcff817634c444.tar.bz2 linux-3.10-5170ae824ddf1988a63fb12cbedcff817634c444.zip |
net: Abstract RTAX_HOPLIMIT metric accesses behind helper.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 9b2d7bc7bed..d9405d1863b 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -1104,7 +1104,7 @@ static int ipv6_get_mtu(struct net_device *dev) int ip6_dst_hoplimit(struct dst_entry *dst) { - int hoplimit = dst_metric(dst, RTAX_HOPLIMIT); + int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT); if (hoplimit < 0) { struct net_device *dev = dst->dev; struct inet6_dev *idev; @@ -1310,7 +1310,7 @@ install_route: } } - if (dst_metric(&rt->dst, RTAX_HOPLIMIT) == 0) + if (dst_metric_raw(&rt->dst, RTAX_HOPLIMIT) == 0) dst_metric_set(&rt->dst, RTAX_HOPLIMIT, -1); if (!dst_mtu(&rt->dst)) dst_metric_set(&rt->dst, RTAX_MTU, ipv6_get_mtu(dev)); |