summaryrefslogtreecommitdiffstats
path: root/vswitches
diff options
context:
space:
mode:
authorChristian Trautman <ctrautma@redhat.com>2016-07-01 22:44:38 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-07-01 22:44:38 +0000
commit26a7262cee1a2961ed5aa76bd969dddeff8ea472 (patch)
tree31017520e60b8bbec9a992fc43ac7c0195495f4e /vswitches
parent4bd09fc0c95f89f3041e6a5a66613eb7cd7eaff8 (diff)
parent095fa73e80f7a9485e72a7f3ba23c4e4608627cd (diff)
Merge "multi-queue: Add basic multi-queue functionality"
Diffstat (limited to 'vswitches')
-rw-r--r--vswitches/ovs_dpdk_vhost.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/vswitches/ovs_dpdk_vhost.py b/vswitches/ovs_dpdk_vhost.py
index 82b952de..2d424bc5 100644
--- a/vswitches/ovs_dpdk_vhost.py
+++ b/vswitches/ovs_dpdk_vhost.py
@@ -109,8 +109,11 @@ class OvsDpdkVhost(IVSwitchOvs):
dpdk_count = self._get_port_count('type=dpdk')
port_name = 'dpdk' + str(dpdk_count)
params = ['--', 'set', 'Interface', port_name, 'type=dpdk']
+ # multi-queue enable
+ if int(settings.getValue('VSWITCH_MULTI_QUEUES')):
+ params += ['options:n_rxq={}'.format(
+ settings.getValue('VSWITCH_MULTI_QUEUES'))]
of_port = bridge.add_port(port_name, params)
-
return (port_name, of_port)
def add_vport(self, switch_name):
@@ -130,7 +133,10 @@ 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_MULTI_QUEUES')):
+ params += ['options:n_rxq={}'.format(
+ settings.getValue('VSWITCH_MULTI_QUEUES'))]
of_port = bridge.add_port(port_name, params)
return (port_name, of_port)