atl1: fix 4G memory corruption bug
authorAlexey Dobriyan <[email protected]>
Thu, 22 May 2008 22:00:25 +0000 (02:00 +0400)
committerJeff Garzik <[email protected]>
Sat, 31 May 2008 02:07:25 +0000 (22:07 -0400)
When using 4+ GB RAM and SWIOTLB is active, the driver corrupts
memory by writing an skb after the relevant DMA page has been
unmapped.  Although this doesn't happen when *not* using bounce
buffers, clearing the pointer to the DMA page after unmapping
it fixes the problem.

http://marc.info/?t=120861317000005&r=2&w=2

Signed-off-by: Alexey Dobriyan <[email protected]>
Signed-off-by: Jay Cliburn <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
drivers/net/atlx/atl1.c

index 9c2394d49428615aac14eff78cf42969dcb0672d..79325c4fb5444f469e6b25af467f9ecfbab07b0e 100644 (file)
@@ -2023,6 +2023,7 @@ rrd_ok:
                /* Good Receive */
                pci_unmap_page(adapter->pdev, buffer_info->dma,
                               buffer_info->length, PCI_DMA_FROMDEVICE);
+               buffer_info->dma = 0;
                skb = buffer_info->skb;
                length = le16_to_cpu(rrd->xsz.xsum_sz.pkt_size);