From b1c28b464d5f21805d322b67f008e114a484146d Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 22 Oct 2009 17:43:46 +0100 Subject: net: add tap_set_offload() This API allows virtio-net to enable various offload features on a tap interface - e.g. to tell the host kernel it can pass up partial checksums to userspace. Signed-off-by: Mark McLoughlin Signed-off-by: Anthony Liguori --- net.h | 1 + 1 file changed, 1 insertion(+) (limited to 'net.h') diff --git a/net.h b/net.h index e0adc69..c1bfdbe 100644 --- a/net.h +++ b/net.h @@ -182,5 +182,6 @@ void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd); int tap_has_vnet_hdr(VLANClientState *vc); void tap_using_vnet_hdr(VLANClientState *vc, int using_vnet_hdr); +void tap_set_offload(VLANClientState *vc, int csum, int tso4, int tso6, int ecn); #endif -- cgit v1.1