Revert "ipv4: tcp: dont cache unconfirmed intput dst"

This reverts commit c074da2810.

This change has several unwanted side effects:

1) Sockets will cache the DST_NOCACHE route in sk->sk_rx_dst and we'll
   thus never create a real cached route.

2) All TCP traffic will use DST_NOCACHE and never use the routing
   cache at all.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2012-06-27 17:05:06 -07:00
parent e440cf2ca0
commit c10237e077
9 changed files with 15 additions and 20 deletions

View File

@@ -28,7 +28,7 @@ static inline int xfrm4_rcv_encap_finish(struct sk_buff *skb)
const struct iphdr *iph = ip_hdr(skb);
if (ip_route_input_noref(skb, iph->daddr, iph->saddr,
iph->tos, skb->dev, false))
iph->tos, skb->dev))
goto drop;
}
return dst_input(skb);