提交 376d940e 编写于 作者: T Tobias Klauser 提交者: David S. Miller

inet6: Remove redundant unlikely()

IS_ERR() already implies unlikely(), so it can be omitted here.
Signed-off-by: NTobias Klauser <tklauser@distanz.ch>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册