aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-07-10 07:01:57 -0400
committerDavid S. Miller <davem@davemloft.net>2012-07-11 01:40:12 -0400
commit3e12939a2a67fbb4cbd962c3b9bc398c73319766 (patch)
treecb3d49ded9da2def0c08e9f5085af870aeadc993 /net/ipv6/route.c
parent1d861aa4b3fb08822055345f480850205ffe6170 (diff)
inet: Kill FLOWI_FLAG_PRECOW_METRICS.
No longer needed. TCP writes metrics, but now in it's own special cache that does not dirty the route metrics. Therefore there is no longer any reason to pre-cow metrics in this way. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 0c0684753781..b7eb51e1a0e1 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1093,7 +1093,7 @@ void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1093 memset(&fl6, 0, sizeof(fl6)); 1093 memset(&fl6, 0, sizeof(fl6));
1094 fl6.flowi6_oif = oif; 1094 fl6.flowi6_oif = oif;
1095 fl6.flowi6_mark = mark; 1095 fl6.flowi6_mark = mark;
1096 fl6.flowi6_flags = FLOWI_FLAG_PRECOW_METRICS; 1096 fl6.flowi6_flags = 0;
1097 fl6.daddr = iph->daddr; 1097 fl6.daddr = iph->daddr;
1098 fl6.saddr = iph->saddr; 1098 fl6.saddr = iph->saddr;
1099 fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK; 1099 fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK;