summaryrefslogtreecommitdiff
path: root/net/tap.c
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2014-02-06 17:02:17 +0100
committerStefan Hajnoczi <stefanha@redhat.com>2014-02-25 11:50:17 +0100
commit2e753bcc7db1a7d2af0d47c0ae7e82a04ce69d63 (patch)
tree2896f7c8f520dc95c353eba2b783c2730fcd9e0f /net/tap.c
parent1f55ac4586bfae81b1e805fb2f0713cb21501ae2 (diff)
downloadqemu-2e753bcc7db1a7d2af0d47c0ae7e82a04ce69d63.tar.gz
net: TAP uses NetClientInfo offloading callbacks
The TAP NetClientInfo structure is inizialized with the TAP-specific functions that manipulates offloading features. Signed-off-by: Vincenzo Maffione <v.maffione@gmail.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'net/tap.c')
-rw-r--r--net/tap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/tap.c b/net/tap.c
index c805f3cdc9..d34ec8802a 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -314,6 +314,12 @@ static NetClientInfo net_tap_info = {
.receive_iov = tap_receive_iov,
.poll = tap_poll,
.cleanup = tap_cleanup,
+ .has_ufo = tap_has_ufo,
+ .has_vnet_hdr = tap_has_vnet_hdr,
+ .has_vnet_hdr_len = tap_has_vnet_hdr_len,
+ .using_vnet_hdr = tap_using_vnet_hdr,
+ .set_offload = tap_set_offload,
+ .set_vnet_hdr_len = tap_set_vnet_hdr_len,
};
static TAPState *net_tap_fd_init(NetClientState *peer,