mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
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:
parent
f1f3ee1bcc
commit
d8290ae54c
@ -120,10 +120,11 @@ static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata,
|
||||
|
||||
/* release skb */
|
||||
WARN_ON(!skb);
|
||||
if (skb) {
|
||||
if (likely(skb)) {
|
||||
(*pkts_compl)++;
|
||||
(*bytes_compl) += skb->len;
|
||||
}
|
||||
|
||||
dev_kfree_skb_any(skb);
|
||||
tx_buf->first_bd = 0;
|
||||
tx_buf->skb = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user