inet6: Remove redundant unlikely()

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

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Tobias Klauser 2010-12-09 04:37:48 +00:00 committed by David S. Miller
parent 0e51d67ebb
commit 376d940ee9

View File

@ -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) {