diff options
Diffstat (limited to 'net/ipv6/inet6_connection_sock.c')
| -rw-r--r-- | net/ipv6/inet6_connection_sock.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c index 77bb8afb141d..c9138189415a 100644 --- a/net/ipv6/inet6_connection_sock.c +++ b/net/ipv6/inet6_connection_sock.c @@ -86,7 +86,7 @@ struct dst_entry *inet6_csk_route_req(struct sock *sk,  	fl6->fl6_sport = htons(ireq->ir_num);  	security_req_classify_flow(req, flowi6_to_flowi(fl6)); -	dst = ip6_dst_lookup_flow(sk, fl6, final_p, false); +	dst = ip6_dst_lookup_flow(sk, fl6, final_p);  	if (IS_ERR(dst))  		return NULL; @@ -216,7 +216,7 @@ static struct dst_entry *inet6_csk_route_socket(struct sock *sk,  	dst = __inet6_csk_dst_check(sk, np->dst_cookie);  	if (!dst) { -		dst = ip6_dst_lookup_flow(sk, fl6, final_p, false); +		dst = ip6_dst_lookup_flow(sk, fl6, final_p);  		if (!IS_ERR(dst))  			__inet6_csk_dst_store(sk, dst, NULL, NULL); | 
