diff options
author | Chris Leech <christopher.leech@intel.com> | 2006-05-23 20:50:37 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-18 00:25:46 -0400 |
commit | de5506e155276d385712c2aa1c2d9a27cd4ed947 (patch) | |
tree | 219c30dab27b9aef2597d8735dfc19db8454849e /include/net/netdma.h | |
parent | db21733488f84a596faaad0d05430b3f51804692 (diff) |
[I/OAT]: Utility functions for offloading sk_buff to iovec copies
Provides for pinning user space pages in memory, copying to iovecs,
and copying from sk_buffs including fragmented and chained sk_buffs.
Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netdma.h')
-rw-r--r-- | include/net/netdma.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/netdma.h b/include/net/netdma.h index cbfe89d7e5d0..19760eb131aa 100644 --- a/include/net/netdma.h +++ b/include/net/netdma.h | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/config.h> | 23 | #include <linux/config.h> |
24 | #ifdef CONFIG_NET_DMA | 24 | #ifdef CONFIG_NET_DMA |
25 | #include <linux/dmaengine.h> | 25 | #include <linux/dmaengine.h> |
26 | #include <linux/skbuff.h> | ||
26 | 27 | ||
27 | static inline struct dma_chan *get_softnet_dma(void) | 28 | static inline struct dma_chan *get_softnet_dma(void) |
28 | { | 29 | { |
@@ -34,5 +35,10 @@ static inline struct dma_chan *get_softnet_dma(void) | |||
34 | rcu_read_unlock(); | 35 | rcu_read_unlock(); |
35 | return chan; | 36 | return chan; |
36 | } | 37 | } |
38 | |||
39 | int dma_skb_copy_datagram_iovec(struct dma_chan* chan, | ||
40 | const struct sk_buff *skb, int offset, struct iovec *to, | ||
41 | size_t len, struct dma_pinned_list *pinned_list); | ||
42 | |||
37 | #endif /* CONFIG_NET_DMA */ | 43 | #endif /* CONFIG_NET_DMA */ |
38 | #endif /* NETDMA_H */ | 44 | #endif /* NETDMA_H */ |