Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 119eccd5 authored by Rick Jones's avatar Rick Jones Committed by David S. Miller
Browse files

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: default avatarRick Jones <rick.jones2@hp.com>
Acked-by: default avatarJaroslav Kysela <perex@perex.cz>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1e701f16
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);