|
@@ -401,7 +401,7 @@ static void free_tx_desc(struct adapter *adapter, struct sge_txq *tq,
|
|
|
if (sdesc->skb) {
|
|
|
if (need_unmap)
|
|
|
unmap_sgl(dev, sdesc->skb, sdesc->sgl, tq);
|
|
|
- kfree_skb(sdesc->skb);
|
|
|
+ dev_consume_skb_any(sdesc->skb);
|
|
|
sdesc->skb = NULL;
|
|
|
}
|
|
|
|
|
@@ -1275,7 +1275,7 @@ int t4vf_eth_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
* need it any longer.
|
|
|
*/
|
|
|
inline_tx_skb(skb, &txq->q, cpl + 1);
|
|
|
- dev_kfree_skb(skb);
|
|
|
+ dev_consume_skb_any(skb);
|
|
|
} else {
|
|
|
/*
|
|
|
* Write the skb's Scatter/Gather list into the TX Packet CPL
|
|
@@ -1354,7 +1354,7 @@ out_free:
|
|
|
* An error of some sort happened. Free the TX skb and tell the
|
|
|
* OS that we've "dealt" with the packet ...
|
|
|
*/
|
|
|
- dev_kfree_skb(skb);
|
|
|
+ dev_kfree_skb_any(skb);
|
|
|
return NETDEV_TX_OK;
|
|
|
}
|
|
|
|