From 55429d9203032fe7b5dd9ac81cec81cec4e4a17d Mon Sep 17 00:00:00 2001 From: Martin Klozik Date: Thu, 19 Oct 2017 13:40:40 +0100 Subject: 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 Reviewed-by: Al Morton Reviewed-by: Christian Trautman Reviewed-by: Sridhar Rao Reviewed-by: Trevor Cooper (cherry picked from commit e1080a507901f7b957f24c75170594b4f9bc9740) --- conf/02_vswitch.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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', ], } -- cgit 1.2.3-korg