diff options
author | Steven Luong <sluong@cisco.com> | 2019-08-29 12:47:57 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-08-30 13:19:20 +0000 |
commit | 2985e0af6b48c7a5b57e442ead21b3620686b052 (patch) | |
tree | cc6a89526fdce244d70ce976360d482fbab7abad /src/plugins/vmxnet3/vmxnet3.api | |
parent | 90b34ed67a516c4391ad353ba431f8419b582d50 (diff) |
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 <sluong@cisco.com>
Change-Id: Ife962b52221191050dedd18252b859880ccd7599
Diffstat (limited to 'src/plugins/vmxnet3/vmxnet3.api')
-rw-r--r-- | src/plugins/vmxnet3/vmxnet3.api | 4 |
1 files changed, 3 insertions, 1 deletions
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 |