bnx2x: added 'likely' to fast-path skb existence
Signed-off-by: Yuval Mintz <yuvalmin@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f1f3ee1bcc
commit
d8290ae54c
@@ -120,10 +120,11 @@ static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata,
|
|||||||
|
|
||||||
/* release skb */
|
/* release skb */
|
||||||
WARN_ON(!skb);
|
WARN_ON(!skb);
|
||||||
if (skb) {
|
if (likely(skb)) {
|
||||||
(*pkts_compl)++;
|
(*pkts_compl)++;
|
||||||
(*bytes_compl) += skb->len;
|
(*bytes_compl) += skb->len;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_kfree_skb_any(skb);
|
dev_kfree_skb_any(skb);
|
||||||
tx_buf->first_bd = 0;
|
tx_buf->first_bd = 0;
|
||||||
tx_buf->skb = NULL;
|
tx_buf->skb = NULL;
|
||||||
|
Reference in New Issue
Block a user