From 2985e0af6b48c7a5b57e442ead21b3620686b052 Mon Sep 17 00:00:00 2001 From: Steven Luong Date: Thu, 29 Aug 2019 12:47:57 -0700 Subject: vmxnet3: per interface gso support gso option for vmxnet3 is per VPP process currently. There is no reason why we cannot provide per interface gso support. Type: feature Signed-off-by: Steven Luong Change-Id: Ife962b52221191050dedd18252b859880ccd7599 --- src/plugins/vmxnet3/vmxnet3.api | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/plugins/vmxnet3/vmxnet3.api') diff --git a/src/plugins/vmxnet3/vmxnet3.api b/src/plugins/vmxnet3/vmxnet3.api index 8c3597bd6a0..191c2ccbd02 100644 --- a/src/plugins/vmxnet3/vmxnet3.api +++ b/src/plugins/vmxnet3/vmxnet3.api @@ -15,7 +15,7 @@ *------------------------------------------------------------------ */ -option version = "1.0.0"; +option version = "1.0.1"; /** \brief @param client_index - opaque cookie to identify the sender @@ -30,6 +30,7 @@ option version = "1.0.0"; @param txq_num - number of transmit queues (optional - default is 1) @param bind - automatically bind PCI to vfio-pci module (optional - default is 0) + @param enable_gso - enable gso (optional - default is 0) */ define vmxnet3_create @@ -44,6 +45,7 @@ define vmxnet3_create u16 txq_size; u16 txq_num; u8 bind; + u8 enable_gso; }; /** \brief -- cgit 1.2.3-korg