From: Ciara Loftus Date: Fri, 20 Nov 2015 14:10:18 +0000 (+0000) Subject: conf: modify core mask format X-Git-Tag: brahmaputra.1.0~29 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=10be71360de39a036ba18deb4852ba3e86570109;p=vswitchperf.git conf: modify core mask format The pmd-cpu-core mask flag does not accept a hexmask with a leading '0x'. Remove these characters from the VSWITCH_PMD_CPU_MASK variable. JIRA: VSPERF-139 Signed-off-by: Ciara Loftus Reviewed-by: Billy O Mahony Reviewed-by: Maryam Tahhan Reviewed-by: Al Morton --- diff --git a/conf/02_vswitch.conf b/conf/02_vswitch.conf index ff07f97d..b9862c92 100644 --- a/conf/02_vswitch.conf +++ b/conf/02_vswitch.conf @@ -79,8 +79,9 @@ VSWITCH_BRIDGE_NAME = 'br0' # directory where hugepages will be mounted on system init HUGEPAGE_DIR = '/dev/hugepages' -# Sets OVS PMDs core mask to 0x30 for affinitization to 5th and 6th CPU core -VSWITCH_PMD_CPU_MASK = '0x30' +# Sets OVS PMDs core mask to 30 for affinitization to 5th and 6th CPU core. +# Note that the '0x' notation should not be used. +VSWITCH_PMD_CPU_MASK = '30' VSWITCH_AFFINITIZATION_ON = 1 VSWITCH_FLOW_TIMEOUT = '30000'