net: ipv4: drop unneeded likely() call around IS_ERR()
IS_ERR() already calls unlikely(), so this extra unlikely() call around IS_ERR() is not needed. Signed-off-by: Enrico Weigelt <info@metux.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
b90f5aa4d6
commit
88e235b80c
@@ -212,7 +212,7 @@ struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb,
|
||||
gso_skb->destructor = NULL;
|
||||
|
||||
segs = skb_segment(gso_skb, features);
|
||||
if (unlikely(IS_ERR_OR_NULL(segs))) {
|
||||
if (IS_ERR_OR_NULL(segs)) {
|
||||
if (copy_dtor)
|
||||
gso_skb->destructor = sock_wfree;
|
||||
return segs;
|
||||
|
Reference in New Issue
Block a user