diff options
author | Ralph Campbell <ralph.campbell@qlogic.com> | 2006-12-12 17:30:48 -0500 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-12-12 17:30:48 -0500 |
commit | 37ccf9df974f55e99bf21278133b065cbbcf3f79 (patch) | |
tree | 4298f7759b810aa8671f1f92ae38a2669b8b62e9 /drivers/infiniband/ulp/ipoib/ipoib.h | |
parent | 1527106ff8cf6afb15f68c8820605a0d32263173 (diff) |
IPoIB: Use the new verbs DMA mapping functions
Convert IPoIB to use the new DMA mapping functions
for kernel verbs consumers.
Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/ulp/ipoib/ipoib.h')
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib.h b/drivers/infiniband/ulp/ipoib/ipoib.h index 99547996aba2..07deee8f81ce 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib.h +++ b/drivers/infiniband/ulp/ipoib/ipoib.h | |||
@@ -105,12 +105,12 @@ struct ipoib_mcast; | |||
105 | 105 | ||
106 | struct ipoib_rx_buf { | 106 | struct ipoib_rx_buf { |
107 | struct sk_buff *skb; | 107 | struct sk_buff *skb; |
108 | dma_addr_t mapping; | 108 | u64 mapping; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | struct ipoib_tx_buf { | 111 | struct ipoib_tx_buf { |
112 | struct sk_buff *skb; | 112 | struct sk_buff *skb; |
113 | DECLARE_PCI_UNMAP_ADDR(mapping) | 113 | u64 mapping; |
114 | }; | 114 | }; |
115 | 115 | ||
116 | /* | 116 | /* |