hp100: Convert the normal skb free path to dev_consume_skb_any()
A bit of floor sweeping in a dusty old corner. Convert the "normal" skb free calls to dev_consume_skb_any() so packet drop tracing will be more sane. Signed-off-by: Rick Jones <rick.jones2@hp.com> Acked-by: Jaroslav Kysela <perex@perex.cz> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1e701f1698
commit
119eccd5e7
|
@ -1627,7 +1627,7 @@ static void hp100_clean_txring(struct net_device *dev)
|
|||
#endif
|
||||
/* Conversion to new PCI API : NOP */
|
||||
pci_unmap_single(lp->pci_dev, (dma_addr_t) lp->txrhead->pdl[1], lp->txrhead->pdl[2], PCI_DMA_TODEVICE);
|
||||
dev_kfree_skb_any(lp->txrhead->skb);
|
||||
dev_consume_skb_any(lp->txrhead->skb);
|
||||
lp->txrhead->skb = NULL;
|
||||
lp->txrhead = lp->txrhead->next;
|
||||
lp->txrcommit--;
|
||||
|
@ -1745,7 +1745,7 @@ static netdev_tx_t hp100_start_xmit(struct sk_buff *skb,
|
|||
hp100_ints_on();
|
||||
spin_unlock_irqrestore(&lp->lock, flags);
|
||||
|
||||
dev_kfree_skb_any(skb);
|
||||
dev_consume_skb_any(skb);
|
||||
|
||||
#ifdef HP100_DEBUG_TX
|
||||
printk("hp100: %s: start_xmit: end\n", dev->name);
|
||||
|
|
Loading…
Reference in New Issue