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

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
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment