aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe.h
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2009-12-02 11:46:56 -0500
committerDavid S. Miller <davem@davemloft.net>2009-12-02 22:57:11 -0500
commite5a43549f7a58509a91b299a51337d386697b92c (patch)
treecca78d4803f46fcb6947f77c60c213a239f4f8a7 /drivers/net/ixgbe/ixgbe.h
parentadeaa9086399780688679f2a7de4243bdbf77295 (diff)
ixgbe: remove skb_dma_map/unmap calls from driver
This patch removes skb_dma_map/unmap calls from the ixgbe driver due to the fact that the calls don't work with HW IOMMU enabled systems. The problem is that multiple mappings will give different results when HW IOMMU is enabled and the skb_dma_map/unmap calls only have one location to store mappings. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe.h')
-rw-r--r--drivers/net/ixgbe/ixgbe.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe.h b/drivers/net/ixgbe/ixgbe.h
index 76b052fa3643..7e35e97227bd 100644
--- a/drivers/net/ixgbe/ixgbe.h
+++ b/drivers/net/ixgbe/ixgbe.h
@@ -106,6 +106,7 @@ struct ixgbe_tx_buffer {
106 unsigned long time_stamp; 106 unsigned long time_stamp;
107 u16 length; 107 u16 length;
108 u16 next_to_watch; 108 u16 next_to_watch;
109 u16 mapped_as_page;
109}; 110};
110 111
111struct ixgbe_rx_buffer { 112struct ixgbe_rx_buffer {