diff options
author | Zoltan Kiss <zoltan.kiss@citrix.com> | 2014-03-07 01:48:25 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-03-08 00:56:35 +0400 |
commit | 3e2234b3149f66bc4be2343a3a0f637d922e4a36 (patch) | |
tree | 4263a55aa5da0df56e81c99528b77bf134c91fbd /drivers/net/xen-netback/common.h | |
parent | 121fa4b77775549c3c5eb41eb335d7dcbb801f90 (diff) | |
download | linux-3e2234b3149f66bc4be2343a3a0f637d922e4a36.tar.xz |
xen-netback: Handle foreign mapped pages on the guest RX path
RX path need to know if the SKB fragments are stored on pages from another
domain.
Logically this patch should be after introducing the grant mapping itself, as
it makes sense only after that. But to keep bisectability, I moved it here. It
shouldn't change any functionality here. xenvif_zerocopy_callback and
ubuf_to_vif are just stubs here, they will be introduced properly later on.
Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/xen-netback/common.h')
-rw-r--r-- | drivers/net/xen-netback/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/xen-netback/common.h b/drivers/net/xen-netback/common.h index 9d3584545e5d..8f264df8818a 100644 --- a/drivers/net/xen-netback/common.h +++ b/drivers/net/xen-netback/common.h @@ -247,6 +247,9 @@ static inline bool xenvif_tx_pending_slots_available(struct xenvif *vif) < MAX_PENDING_REQS; } +/* Callback from stack when TX packet can be released */ +void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success); + extern bool separate_tx_rx_irq; #endif /* __XEN_NETBACK__COMMON_H__ */ |