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.h | |
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.h')
-rw-r--r-- | src/plugins/vmxnet3/vmxnet3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/vmxnet3/vmxnet3.h b/src/plugins/vmxnet3/vmxnet3.h index 65aa929ddcd..8790e0f136e 100644 --- a/src/plugins/vmxnet3/vmxnet3.h +++ b/src/plugins/vmxnet3/vmxnet3.h @@ -582,7 +582,7 @@ typedef struct void *queues; vmxnet3_rss_shared *rss; u32 link_speed; - u8 lro_enable; + u8 gso_enable; vmxnet3_tx_stats *tx_stats; vmxnet3_rx_stats *rx_stats; } vmxnet3_device_t; @@ -592,7 +592,6 @@ typedef struct vmxnet3_device_t *devices; u16 msg_id_base; vlib_log_class_t log_default; - u8 lro_configured; } vmxnet3_main_t; extern vmxnet3_main_t vmxnet3_main; @@ -606,6 +605,7 @@ typedef struct u16 txq_size; u16 txq_num; u8 bind; + u8 enable_gso; /* return */ i32 rv; u32 sw_if_index; |