diff options
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
| -rw-r--r-- | net/ipv4/inet_connection_sock.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index eb30fc1770de..18c0d5bffe12 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -716,7 +716,7 @@ static void reqsk_timer_handler(struct timer_list *t)  	 * ones are about to clog our table.  	 */  	qlen = reqsk_queue_len(queue); -	if ((qlen << 1) > max(8U, sk_listener->sk_max_ack_backlog)) { +	if ((qlen << 1) > max(8U, READ_ONCE(sk_listener->sk_max_ack_backlog))) {  		int young = reqsk_queue_len_young(queue) << 1;  		while (thresh > 2) { @@ -1086,7 +1086,7 @@ struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu)  		if (!dst)  			goto out;  	} -	dst->ops->update_pmtu(dst, sk, NULL, mtu); +	dst->ops->update_pmtu(dst, sk, NULL, mtu, true);  	dst = __sk_dst_check(sk, 0);  	if (!dst)  |