mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
sundance: Use dev_kfree_skb_any() helper
Use dev_kfree_skb_any() helper to free the skb Signed-off-by: Denis Kirjanov <dkirjanov@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d91dc27993
commit
a9478e3861
@ -1116,7 +1116,6 @@ reset_tx (struct net_device *dev)
|
||||
void __iomem *ioaddr = np->base;
|
||||
struct sk_buff *skb;
|
||||
int i;
|
||||
int irq = in_interrupt();
|
||||
|
||||
/* Reset tx logic, TxListPtr will be cleaned */
|
||||
iowrite16 (TxDisable, ioaddr + MACCtrl1);
|
||||
@ -1131,10 +1130,7 @@ reset_tx (struct net_device *dev)
|
||||
dma_unmap_single(&np->pci_dev->dev,
|
||||
le32_to_cpu(np->tx_ring[i].frag[0].addr),
|
||||
skb->len, DMA_TO_DEVICE);
|
||||
if (irq)
|
||||
dev_kfree_skb_irq (skb);
|
||||
else
|
||||
dev_kfree_skb (skb);
|
||||
dev_kfree_skb_any(skb);
|
||||
np->tx_skbuff[i] = NULL;
|
||||
dev->stats.tx_dropped++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user