Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 376d940e authored by Tobias Klauser's avatar Tobias Klauser Committed by David S. Miller
Browse files

inet6: Remove redundant unlikely()



IS_ERR() already implies unlikely(), so it can be omitted here.

Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0e51d67e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -810,7 +810,7 @@ static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
	}
	rcu_read_unlock();

	if (unlikely(IS_ERR(segs)))
	if (IS_ERR(segs))
		goto out;

	for (skb = segs; skb; skb = skb->next) {