aboutsummaryrefslogtreecommitdiffstats
path: root/vswitches/ovs_dpdk_vhost.py
diff options
context:
space:
mode:
authorMichal Weglicki <michalx.weglicki@intel.com>2015-07-24 10:42:38 +0100
committerMaryam Tahhan <maryam.tahhan@intel.com>2015-08-06 09:40:55 +0000
commit06468e123bdcbf5930abdf9d5d9e2432a7159839 (patch)
treeffb137fcace56e1fec6b3f064ffe0d609e56f807 /vswitches/ovs_dpdk_vhost.py
parentcb5400b079ec8aacfd6dac73cbf59b74bbcb4e1e (diff)
Vanilla OVS support implementation
JIRA: VSPERF-57 This patch implements Vanilla OVS support.It contains: * New IVswitch implementation: OvsVanilla, * New configuration contants, * New mandatory configuration variable: VSWITCH_VANILLA_PHY_PORT_NAMES for Vanilla OVS has been added, * Virtual ports are not yet implemented, * Some kernel modules wrapping methods has been moved from dpdk.py to tools. * Fixed bug where ovsdb hasn't been killed at the end of test case run on some platforms. Change-Id: I21a0d84dbc4004aae564d5547387a2563f2d1e5b Signed-off-by: Michal Weglicki <michalx.weglicki@intel.com> Reviewed-by: Eugene Snider <Eugene.Snider@huawei.com> Reviewed-by: Gurpreet Singh <gurpreet.singh@spirent.com> Reviewed-by: Tv Rao <tv.rao@freescale.com> Reviewed-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Billy O Mahony <billy.o.mahony@intel.com> Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'vswitches/ovs_dpdk_vhost.py')
-rw-r--r--vswitches/ovs_dpdk_vhost.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/vswitches/ovs_dpdk_vhost.py b/vswitches/ovs_dpdk_vhost.py
index d2e8907f..7b5034c5 100644
--- a/vswitches/ovs_dpdk_vhost.py
+++ b/vswitches/ovs_dpdk_vhost.py
@@ -38,7 +38,8 @@ class OvsDpdkVhost(IVSwitch):
vswitchd_args += settings.getValue('VSWITCHD_DPDK_ARGS')
vswitchd_args += VSWITCHD_CONST_ARGS
- self._vswitchd = VSwitchd(vswitchd_args=vswitchd_args)
+ self._vswitchd = VSwitchd(vswitchd_args=vswitchd_args,
+ expected_cmd=r'EAL: Master l*core \d+ is ready')
self._bridges = {}
def start(self):