aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp/conf/startup.conf
diff options
context:
space:
mode:
authorChenmin Sun <chenmin.sun@intel.com>2019-10-11 00:28:13 +0800
committerDamjan Marion <dmarion@me.com>2019-11-01 17:26:43 +0000
commit5bec5f7860dafcef6aefd50b74de15d08910c6f4 (patch)
treedf54bc624663762571d141cf91b41116685c7fec /src/vpp/conf/startup.conf
parentf9d784b6b9d3acf141ccccf3faf51f409f405294 (diff)
dpdk: fix tso not properly check the 'enable-tcp-udp-checksum' option issue
Type: fix Fix tso did not properly check the 'enable-tcp-udp-checksum' option issue Add description of 'tso' and 'enable-tcp-udp-checksum' in startup.conf Signed-off-by: Chenmin Sun <chenmin.sun@intel.com> Change-Id: Id659067a9fa9e1db6c3f8dc533a2e90351b86831
Diffstat (limited to 'src/vpp/conf/startup.conf')
-rw-r--r--src/vpp/conf/startup.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vpp/conf/startup.conf b/src/vpp/conf/startup.conf
index b61e4514e13..3d83a133609 100644
--- a/src/vpp/conf/startup.conf
+++ b/src/vpp/conf/startup.conf
@@ -100,6 +100,11 @@ cpu {
## VLAN strip offload mode for interface
## Default is off
# vlan-strip-offload on
+
+ ## TCP Segment Offload
+ ## Default is off
+ ## To enable TSO, 'enable-tcp-udp-checksum' must be set
+ # tso on
# }
## Whitelist specific interface by specifying PCI address
@@ -135,6 +140,10 @@ cpu {
## Disables UDP / TCP TX checksum offload. Typically needed for use
## faster vector PMDs (together with no-multi-seg)
# no-tx-checksum-offload
+
+ ## Enable UDP / TCP TX checksum offload
+ ## This is the reversed option of 'no-tx-checksum-offload'
+ # enable-tcp-udp-checksum
# }