Commit 376d940ee91318cc6becefbb9454bb4454d7473f

Authored by Tobias Klauser
Committed by David S. Miller
1 parent 0e51d67ebb

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -810,7 +810,7 @@
810 810 }
811 811 rcu_read_unlock();
812 812  
813   - if (unlikely(IS_ERR(segs)))
  813 + if (IS_ERR(segs))
814 814 goto out;
815 815  
816 816 for (skb = segs; skb; skb = skb->next) {