aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/udp.h
diff options
context:
space:
mode:
authorDenis Efremov <efremov@linux.com>2019-08-29 19:50:24 +0300
committerDavid S. Miller <davem@davemloft.net>2019-08-30 19:49:37 -0700
commit974ceb21fcf9c0345570ea194e799a4ee7842f33 (patch)
tree4f73a3818924dd24a022e82ab63f6bea0a69d94e /include/net/udp.h
parentnet/mlx5e: Remove unlikely() from WARN*() condition (diff)
downloadlinux-dev-974ceb21fcf9c0345570ea194e799a4ee7842f33.tar.xz
linux-dev-974ceb21fcf9c0345570ea194e799a4ee7842f33.zip
udp: Remove unlikely() from IS_ERR*() condition
"unlikely(IS_ERR_OR_NULL(x))" is excessive. IS_ERR_OR_NULL() already uses unlikely() internally. Signed-off-by: Denis Efremov <efremov@linux.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Joe Perches <joe@perches.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: netdev@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/udp.h')
-rw-r--r--include/net/udp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/udp.h b/include/net/udp.h
index 79d141d2103b..bad74f780831 100644
--- a/include/net/udp.h
+++ b/include/net/udp.h
@@ -480,7 +480,7 @@ static inline struct sk_buff *udp_rcv_segment(struct sock *sk,
* CB fragment
*/
segs = __skb_gso_segment(skb, features, false);
- if (unlikely(IS_ERR_OR_NULL(segs))) {
+ if (IS_ERR_OR_NULL(segs)) {
int segs_nr = skb_shinfo(skb)->gso_segs;
atomic_add(segs_nr, &sk->sk_drops);