diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2020-01-03 15:11:53 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-01-08 17:08:50 +0000 |
commit | 6d4af8918c8d14aa609d6488f0793152f9ed1927 (patch) | |
tree | 78772559db16acd57a73ec834aaf0b798ebe2f26 /src/vnet/devices/virtio/virtio.api | |
parent | 0d74dd1f823b170d623316cf07eee70851494470 (diff) |
virtio: split gso and checksum offload functionality
Type: refactor
Change-Id: I897e36bd5db593b417c2bac9f739bc51cf45bc08
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vnet/devices/virtio/virtio.api')
-rw-r--r-- | src/vnet/devices/virtio/virtio.api | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/devices/virtio/virtio.api b/src/vnet/devices/virtio/virtio.api index b191810d71b..efbcba8fa43 100644 --- a/src/vnet/devices/virtio/virtio.api +++ b/src/vnet/devices/virtio/virtio.api @@ -27,6 +27,7 @@ import "vnet/pci/pci_types.api"; @param use_random_mac - let the system generate a unique mac address @param mac_address - mac addr to assign to the interface if use_random not set @param gso_enabled - enable gso feature if available, 1 to enable + @param checksum_offload_enabled - enable checksum feature if available, 1 to enable @param features - the virtio features which driver should negotiate with device */ define virtio_pci_create @@ -37,6 +38,7 @@ define virtio_pci_create bool use_random_mac; vl_api_mac_address_t mac_address; bool gso_enabled; + bool checksum_offload_enabled; u64 features; }; |