os-net-config/etc/os-net-config/samples/ovs_dpdk.json
Sanjay Upadhyay 2aa95a8810 Configure multi-queue value for DPDK Port
The multi-queue option for DPDK is applied via ovs-vsctl command
via ovs_extra params. This patch adds support for configuring the
rx_queue (multi-queue) value to the DPDK Ports.

Change-Id: Ib9faad5e9d49f78e3a0b45ef3ae0082f3e9d14a6
Co-Authored-By: Karthik S <ksundara@redhat.com>
implements: blueprint ovs-2-6-features-dpdk
2017-05-23 18:15:30 +05:30

23 lines
586 B
JSON

{ "network_config": [
{
"type": "ovs_user_bridge",
"name": "br-link",
"members": [
{
"type": "ovs_dpdk_port",
"name": "dpdk0",
"driver": "igb_uio",
"mtu": 8192,
"rx_queue": 4,
"members": [
{
"type": "interface",
"name": "nic2",
}
]
}
]
}
]
}