When removing an item from RCU protected list, we must prevent
store-tearing, using rcu_assign_pointer() or WRITE_ONCE().
Fixes: 04f721c671656 ("tcp_metrics: Rewrite tcp_metrics_flush_all")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
                        match = net ? net_eq(tm_net(tm), net) :
                                !refcount_read(&tm_net(tm)->ns.count);
                        if (match) {
-                               *pp = tm->tcpm_next;
+                               rcu_assign_pointer(*pp, tm->tcpm_next);
                                kfree_rcu(tm, rcu_head);
                        } else {
                                pp = &tm->tcpm_next;
                if (addr_same(&tm->tcpm_daddr, &daddr) &&
                    (!src || addr_same(&tm->tcpm_saddr, &saddr)) &&
                    net_eq(tm_net(tm), net)) {
-                       *pp = tm->tcpm_next;
+                       rcu_assign_pointer(*pp, tm->tcpm_next);
                        kfree_rcu(tm, rcu_head);
                        found = true;
                } else {