aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Klozik <martinx.klozik@intel.com>2017-01-24 08:22:13 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-24 08:22:13 +0000
commit1aee66885e918f2eeabbad331e37b14a4d774784 (patch)
tree0e7d255003226fab186da444c35d109a98f43c8c
parent196f6f0a4d59bed049e2d03da6259e9ed6d44fb0 (diff)
parent119f9b04ab4d4dfbf7c9ac63dc0da59edec22538 (diff)
Merge "dpdk_vhostuser_mq_fix: Fixes erroneous error message with MQ and dpdk"
-rw-r--r--vswitches/ovs_dpdk_vhost.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/vswitches/ovs_dpdk_vhost.py b/vswitches/ovs_dpdk_vhost.py
index a2731478..40f4533b 100644
--- a/vswitches/ovs_dpdk_vhost.py
+++ b/vswitches/ovs_dpdk_vhost.py
@@ -133,11 +133,6 @@ class OvsDpdkVhost(IVSwitchOvs):
vhost_count = self._get_port_count('type=dpdkvhostuser')
port_name = 'dpdkvhostuser' + str(vhost_count)
params = ['--', 'set', 'Interface', port_name, 'type=dpdkvhostuser']
- # multi queue enable
- if int(settings.getValue('VSWITCH_DPDK_MULTI_QUEUES')) and \
- not settings.getValue('OVS_OLD_STYLE_MQ'):
- params += ['options:n_rxq={}'.format(
- settings.getValue('VSWITCH_DPDK_MULTI_QUEUES'))]
of_port = bridge.add_port(port_name, params)
return (port_name, of_port)