On Tue, 2015-11-17 at 16:44 +0000, Will Deacon wrote:
Do you know the usage in the kernel causing this warning?
/** * sk_state_load - read sk->sk_state for lockless contexts * @sk: socket pointer * * Paired with sk_state_store(). Used in places we do not hold socket lock : * tcp_diag_get_info(), tcp_get_info(), tcp_poll(), get_tcp4_sock() ... */ static inline int sk_state_load(const struct sock *sk) { return smp_load_acquire(&sk->sk_state); }