diff options
author | David Woodhouse <dwmw2@infradead.org> | 2012-12-11 18:57:14 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-12 09:16:47 +0400 |
commit | cae49ede00ec3d0cda290b03fee55b72b49efc11 (patch) | |
tree | 56080637d0aa2421913818cb9108152510a07851 /drivers/atm | |
parent | fda4d85d6124134dd7c72d6559bd275732eb39b9 (diff) | |
download | linux-cae49ede00ec3d0cda290b03fee55b72b49efc11.tar.xz |
solos-pci: fix double-free of TX skb in DMA mode
We weren't clearing card->tx_skb[port] when processing the TX done interrupt.
If there wasn't another skb ready to transmit immediately, this led to a
double-free because we'd free it *again* next time we did have a packet to
send.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Cc: stable@kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/solos-pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index 6619a8a9607c..c909b7b7d5f1 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c @@ -945,10 +945,11 @@ static uint32_t fpga_tx(struct solos_card *card) for (port = 0; tx_pending; tx_pending >>= 1, port++) { if (tx_pending & 1) { struct sk_buff *oldskb = card->tx_skb[port]; - if (oldskb) + if (oldskb) { pci_unmap_single(card->dev, SKB_CB(oldskb)->dma_addr, oldskb->len, PCI_DMA_TODEVICE); - + card->tx_skb[port] = NULL; + } spin_lock(&card->tx_queue_lock); skb = skb_dequeue(&card->tx_queue[port]); if (!skb) |