aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Klozik <martinx.klozik@intel.com>2017-10-19 13:40:40 +0100
committerMartin Klozik <martinx.klozik@intel.com>2017-10-19 13:50:56 +0100
commite1080a507901f7b957f24c75170594b4f9bc9740 (patch)
tree61d9b6adf37d4a73586da43d5024a14ea68d77c5
parentbde80dd0127ff65de738085a73832834e2ab1902 (diff)
conf: Fix default VPP configuration
Number of VPP workers (aka PMD threads) was not specified explicitly in default configuration file. Configuration has been fixed to use the same cores as OVS with DPDK. Change-Id: Icd3e5d6f429435fbc1ff580891f4b182d1c48729 Signed-off-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Al Morton <acmorton@att.com> Reviewed-by: Christian Trautman <ctrautma@redhat.com> Reviewed-by: Sridhar Rao <sridhar.rao@spirent.com> Reviewed-by: Trevor Cooper <trevor.cooper@intel.com>
-rw-r--r--conf/02_vswitch.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/02_vswitch.conf b/conf/02_vswitch.conf
index c50a5ddd..92521f9a 100644
--- a/conf/02_vswitch.conf
+++ b/conf/02_vswitch.conf
@@ -213,7 +213,8 @@ VSWITCH_VPP_ARGS = {
'full-coredump',
],
'cpu' : [
- 'main-core 3',
+ 'main-core 2',
+ 'workers 2',
'corelist-workers 4,5',
],
}