diff options
author | Vladislav Zolotarov <vladz@broadcom.com> | 2011-05-22 12:06:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-23 03:01:22 +0200 |
commit | 40955532bc9d865999dfc58b7896605d58650655 (patch) | |
tree | fad93cc9a965328419afa9e3e511864893b8f289 /drivers/net/bnx2x/bnx2x_cmn.c | |
parent | net: filter: move forward declarations to avoid compile warnings (diff) | |
download | linux-40955532bc9d865999dfc58b7896605d58650655.tar.xz linux-40955532bc9d865999dfc58b7896605d58650655.zip |
bnx2x: call dev_kfree_skb_any instead of dev_kfree_skb
replace function calls when possible call in both irq/non-irq contexts
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x/bnx2x_cmn.c')
-rw-r--r-- | drivers/net/bnx2x/bnx2x_cmn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bnx2x/bnx2x_cmn.c b/drivers/net/bnx2x/bnx2x_cmn.c index 64d01e728a9d..d5bd35b7f2e1 100644 --- a/drivers/net/bnx2x/bnx2x_cmn.c +++ b/drivers/net/bnx2x/bnx2x_cmn.c @@ -131,7 +131,7 @@ static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fastpath *fp, /* release skb */ WARN_ON(!skb); - dev_kfree_skb(skb); + dev_kfree_skb_any(skb); tx_buf->first_bd = 0; tx_buf->skb = NULL; @@ -465,7 +465,7 @@ static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp, } else { DP(NETIF_MSG_RX_STATUS, "Failed to allocate new pages" " - dropping packet!\n"); - dev_kfree_skb(skb); + dev_kfree_skb_any(skb); } |