aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgb/ixgb.h
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2009-12-02 11:46:31 -0500
committerDavid S. Miller <davem@davemloft.net>2009-12-02 22:57:11 -0500
commitadeaa9086399780688679f2a7de4243bdbf77295 (patch)
treebdb28d1fed9753ce7fd744a95c668a7cc7775933 /drivers/net/ixgb/ixgb.h
parent602c0554d7b00c9703e1a0bc584e9c583f577642 (diff)
ixgb: remove use of skb_dma_map from ixgb
skb_dma_map is incompatible with HW iommu due to the fact that multiple mappings can result in different results each time. For this reason it is best to just remove use of these function calls. Signed-off-by: Alexander Duyck <alexander.h.duyck@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/ixgb/ixgb.h')
-rw-r--r--drivers/net/ixgb/ixgb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h
index e95d9b6f1f2d..5257ae08b9f9 100644
--- a/drivers/net/ixgb/ixgb.h
+++ b/drivers/net/ixgb/ixgb.h
@@ -117,6 +117,7 @@ struct ixgb_buffer {
117 unsigned long time_stamp; 117 unsigned long time_stamp;
118 u16 length; 118 u16 length;
119 u16 next_to_watch; 119 u16 next_to_watch;
120 u16 mapped_as_page;
120}; 121};
121 122
122struct ixgb_desc_ring { 123struct ixgb_desc_ring {