vswitches: Affinitize vswitch threads for OVS-DPDK 63/1263/2
authorDino Simeon Madarang <dino.simeonx.madarang@intel.com>
Tue, 18 Aug 2015 22:44:36 +0000 (23:44 +0100)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 25 Aug 2015 14:17:18 +0000 (14:17 +0000)
JIRA: VSPERF-64

Change-Id: I7cefd05479da6fe17357da4da558f466175dd6fc
Signed-off-by: Dino Simeon Madarang <dino.simeonx.madarang@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Al Morton <acmorton@att.com>
conf/02_vswitch.conf
vswitches/ovs_dpdk_vhost.py

index 48bf596..a9202c8 100644 (file)
@@ -45,6 +45,12 @@ VSWITCH_VANILLA_KERNEL_MODULES = ['openvswitch']
 # directory where hugepages will be mounted on system init
 HUGEPAGE_DIR = '/dev/hugepages'
 
+# Sets OVS PMD core mask to 2 for CPU core 1 affinitization
+VSWITCH_PMD_CPU_MASK = '2'
+VSWITCH_AFFINITIZATION_ON = 1
+
+VSWITCH_FLOW_TIMEOUT = '30000'
+
 # list of tuples of format (path, module_name), which will be inserted
 # using 'insmod' on system init
 
index 3ff4126..154d535 100644 (file)
@@ -65,7 +65,16 @@ class OvsDpdkVhost(IVSwitch):
         bridge = OFBridge(switch_name)
         bridge.create()
         bridge.set_db_attribute('Open_vSwitch', '.',
-                                'other_config:max-idle', '60000')
+                                'other_config:max-idle',
+                                settings.getValue('VSWITCH_FLOW_TIMEOUT'))
+
+        if settings.getValue('VSWITCH_AFFINITIZATION_ON') == 1:
+            # Sets the PMD core mask to VSWITCH_PMD_CPU_MASK
+            # for CPU core affinitization
+            bridge.set_db_attribute('Open_vSwitch', '.',
+                                    'other_config:pmd-cpu-mask',
+                                    settings.getValue('VSWITCH_PMD_CPU_MASK'))
+
         bridge.set_db_attribute('Bridge', bridge.br_name,
                                 'datapath_type', 'netdev')
         self._bridges[switch_name] = bridge