if (ndst != dst) {
                        rcu_assign_pointer(sk->sk_dst_cache, ndst);
                        sk_tx_queue_clear(sk);
-                       sk->sk_dst_pending_confirm = 0;
+                       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
                }
        }
 }
        struct dst_entry *old_dst;
 
        sk_tx_queue_clear(sk);
-       sk->sk_dst_pending_confirm = 0;
+       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
        old_dst = rcu_dereference_protected(sk->sk_dst_cache,
                                            lockdep_sock_is_held(sk));
        rcu_assign_pointer(sk->sk_dst_cache, dst);
        struct dst_entry *old_dst;
 
        sk_tx_queue_clear(sk);
-       sk->sk_dst_pending_confirm = 0;
+       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
        old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst);
        dst_release(old_dst);
 }
 
            INDIRECT_CALL_INET(dst->ops->check, ip6_dst_check, ipv4_dst_check,
                               dst, cookie) == NULL) {
                sk_tx_queue_clear(sk);
-               sk->sk_dst_pending_confirm = 0;
+               WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
                RCU_INIT_POINTER(sk->sk_dst_cache, NULL);
                dst_release(dst);
                return NULL;
 
        skb->destructor = skb_is_tcp_pure_ack(skb) ? __sock_wfree : tcp_wfree;
        refcount_add(skb->truesize, &sk->sk_wmem_alloc);
 
-       skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm);
+       skb_set_dst_pending_confirm(skb, READ_ONCE(sk->sk_dst_pending_confirm));
 
        /* Build TCP header and checksum it. */
        th = (struct tcphdr *)skb->data;