]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
tg3: Fix DMA mapping leak in tigon3_dma_hwbug_workaround().
authorDavid S. Miller <davem@davemloft.net>
Thu, 11 Sep 2008 22:45:19 +0000 (15:45 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Sep 2008 22:45:19 +0000 (15:45 -0700)
Noticed by Michael Chan.

Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tg3.c

index 355e8bcf6fed262cc76be313ab6b9f31c61bf443..123920759efde3a0ce991fa670ee0c0ab47b68ca 100644 (file)
@@ -4631,6 +4631,9 @@ static int tigon3_dma_hwbug_workaround(struct tg3 *tp, struct sk_buff *skb,
                 * Drop the packet if it does.
                 */
                if (ret || tg3_4g_overflow_test(new_addr, new_skb->len)) {
+                       if (!ret)
+                               skb_dma_unmap(&tp->pdev->dev, new_skb,
+                                             DMA_TO_DEVICE);
                        ret = -1;
                        dev_kfree_skb(new_skb);
                        new_skb = NULL;