diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-06-08 04:04:43 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-06-08 04:04:43 +0000 |
commit | 9626b44cc931e899d22b1285b7acab87f0e67fe8 (patch) | |
tree | beb8d154c71821040dd94e8477eb37954d534d60 /etc/os-net-config/samples | |
parent | cc7ff987cae3452a28f85ca3cabef49a3a64a2ff (diff) | |
parent | 2aa95a88109a96e24ea4329364a2ecc07fe575fd (diff) |
Merge "Configure multi-queue value for DPDK Port"
Diffstat (limited to 'etc/os-net-config/samples')
-rw-r--r-- | etc/os-net-config/samples/ovs_dpdk.json | 1 | ||||
-rw-r--r-- | etc/os-net-config/samples/ovs_dpdk.yaml | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/etc/os-net-config/samples/ovs_dpdk.json b/etc/os-net-config/samples/ovs_dpdk.json index 37b79e0..5c84044 100644 --- a/etc/os-net-config/samples/ovs_dpdk.json +++ b/etc/os-net-config/samples/ovs_dpdk.json @@ -8,6 +8,7 @@ "name": "dpdk0", "driver": "igb_uio", "mtu": 8192, + "rx_queue": 4, "members": [ { "type": "interface", diff --git a/etc/os-net-config/samples/ovs_dpdk.yaml b/etc/os-net-config/samples/ovs_dpdk.yaml index 47fd3ab..81aa212 100644 --- a/etc/os-net-config/samples/ovs_dpdk.yaml +++ b/etc/os-net-config/samples/ovs_dpdk.yaml @@ -16,6 +16,12 @@ network_config: driver: igb_uio # MTU is optional, used for jumbo frames mtu: 8192 + # rx_queue is optional, used for multi-queue option. It configures the + # maximum number of queues for a physical interface. If not defined, + # the physical interface will have single queue. The number of queues + # should be less than the PMD cores as each queue will have one PMD + # thread (CPU) associated with it. + rx_queue: 4 members: - type: interface name: nic2 |