diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-06-09 10:56:12 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-06-09 10:56:12 +0000 |
commit | 187c1e66d4341e6c1fad308ca4d17d4d5026f61a (patch) | |
tree | e7e5aa68af1af1a07afe76b885d482343b6b4a4d /etc/os-net-config/samples | |
parent | 58a913e1554c5dd71a6fb7f7ba354d25379e2c97 (diff) | |
parent | c8901b8ac34cf180c0a62c39a2b31def9c28aaf3 (diff) |
Merge "Multiqueue support for OvsDpdkBond"
Diffstat (limited to 'etc/os-net-config/samples')
-rw-r--r-- | etc/os-net-config/samples/ovs_dpdk_bond.json | 1 | ||||
-rw-r--r-- | etc/os-net-config/samples/ovs_dpdk_bond.yaml | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/etc/os-net-config/samples/ovs_dpdk_bond.json b/etc/os-net-config/samples/ovs_dpdk_bond.json index a921d60..410d459 100644 --- a/etc/os-net-config/samples/ovs_dpdk_bond.json +++ b/etc/os-net-config/samples/ovs_dpdk_bond.json @@ -7,6 +7,7 @@ "type" : "ovs_dpdk_bond", "name" : "dpdkbond0", "mtu" : 9000, + "rx_queue": 4, "members": [ { "type" : "ovs_dpdk_port", diff --git a/etc/os-net-config/samples/ovs_dpdk_bond.yaml b/etc/os-net-config/samples/ovs_dpdk_bond.yaml index 3fc9f7d..17a73a3 100644 --- a/etc/os-net-config/samples/ovs_dpdk_bond.yaml +++ b/etc/os-net-config/samples/ovs_dpdk_bond.yaml @@ -15,6 +15,14 @@ network_config: name: dpdkbond0 # MTU is optional, e.g. for jumbo frames mtu: 9000 + # rx_queue is optional, used for multi-queue option. It configures the + # maximum number of queues for each interface associated with the + # ovs_dpdk_bond. If not defined, the physical interfaces will have + # single queue. + # (rx_queue) x (Number of members in the ovs_dpdk_bond) should be less + # than the number of PMD cores, as each queue will have one PMD thread + # (CPU) associated with it. + rx_queue: 4 members: - type: ovs_dpdk_port |