aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2018-11-01 11:05:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-11-01 11:05:59 +0000
commit36b000b84254be845709ac5d289eed76d4a828d8 (patch)
tree3d2ced7dc50b5b65726f68ac35ca5c153f711f6e /yardstick
parent82f84e0fe0404fb7d29e50921b6958020967ae5a (diff)
parent8cccd99d47c03f39750d3ad955a5043f4d24d5e1 (diff)
Merge "Make OvS to listen on TCP by default"
Diffstat (limited to 'yardstick')
-rw-r--r--yardstick/benchmark/contexts/standalone/ovs_dpdk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py
index 3ad1097b0..a1af3c72b 100644
--- a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py
+++ b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py
@@ -146,8 +146,8 @@ class OvsDpdkContext(base.Context):
cmd_list = [
"mkdir -p /usr/local/var/run/openvswitch",
"mkdir -p {}".format(os.path.dirname(log_path)),
- "ovsdb-server --remote=punix:/{0}/{1} --pidfile --detach".format(vpath,
- ovs_sock_path),
+ ("ovsdb-server --remote=punix:/{0}/{1} --remote=ptcp:6640"
+ " --pidfile --detach").format(vpath, ovs_sock_path),
ovs_other_config.format("--no-wait ", "dpdk-init=true"),
ovs_other_config.format("--no-wait ", "dpdk-socket-mem='%s,%s'" % (socket0, socket1)),
lcore_mask,