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.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/vmxnet3/vmxnet3.h') 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; -- cgit 1.2.3-korg