summaryrefslogtreecommitdiffstats
path: root/net/ipv6/udp.c
diff options
context:
space:
mode:
authorAlexey Kodanev <alexey.kodanev@oracle.com>2018-04-03 08:00:08 -0400
committerDavid S. Miller <davem@davemloft.net>2018-04-04 11:31:57 -0400
commit96818159c3c08911330e84f86b3becf71aeeaac8 (patch)
tree4c194bd0926d5e954e596303d79b7277b301358f /net/ipv6/udp.c
parent7d6850f7c618d8f13d7945dd0dcee98223be6459 (diff)
ipv6: allow to cache dst for a connected sk in ip6_sk_dst_lookup_flow()
Add 'connected' parameter to ip6_sk_dst_lookup_flow() and update the cache only if ip6_sk_dst_check() returns NULL and a socket is connected. The function is used as before, the new behavior for UDP sockets in udpv6_sendmsg() will be enabled in the next patch. Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r--net/ipv6/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index 6861ed479469..fc13a1e2d789 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -1308,7 +1308,7 @@ do_udp_sendmsg:
1308 1308
1309 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel); 1309 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1310 1310
1311 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p); 1311 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p, false);
1312 if (IS_ERR(dst)) { 1312 if (IS_ERR(dst)) {
1313 err = PTR_ERR(dst); 1313 err = PTR_ERR(dst);
1314 dst = NULL; 1314 dst = NULL;