From: Eric Dumazet Date: Wed, 2 Jul 2014 09:39:38 +0000 (-0700) Subject: net: fix sparse warning in sk_dst_set() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fde40bdfda59c317d9b130b21a569f3285e269e4;p=karo-tx-linux.git net: fix sparse warning in sk_dst_set() [ Upstream commit 5925a0555bdaf0b396a84318cbc21ba085f6c0d3 ] sk_dst_cache has __rcu annotation, so we need a cast to avoid following sparse error : include/net/sock.h:1774:19: warning: incorrect type in initializer (different address spaces) include/net/sock.h:1774:19: expected struct dst_entry [noderef] *__ret include/net/sock.h:1774:19: got struct dst_entry *dst Signed-off-by: Eric Dumazet Reported-by: kbuild test robot Fixes: 7f502361531e ("ipv4: irq safe sk_dst_[re]set() and ipv4_sk_update_pmtu() fix") Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/net/sock.h b/include/net/sock.h index 5cff69001e4e..2f7bc435c93d 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1796,7 +1796,7 @@ sk_dst_set(struct sock *sk, struct dst_entry *dst) struct dst_entry *old_dst; sk_tx_queue_clear(sk); - old_dst = xchg(&sk->sk_dst_cache, dst); + old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst); dst_release(old_dst); }