DPDK datapath type added

Nova spec: https://review.opendev.org/c/openstack/nova-specs/+/859290

Partial-Bug: #2013540
Change-Id: Id8b96ebdfa55dccb657c4e76b1948e096ce597a8
This commit is contained in:
Oleksii Butenko 2022-09-28 15:01:39 +03:00 committed by Danylo Vodopianov
parent c5413d56b6
commit ba77e7651a
2 changed files with 11 additions and 1 deletions

View File

@ -214,8 +214,12 @@ OVS_DATAPATH_SYSTEM = 'system'
OVS_DATAPATH_NETDEV = 'netdev'
OVS_DPDK_VHOST_USER = 'dpdkvhostuser'
OVS_DPDK_VHOST_USER_CLIENT = 'dpdkvhostuserclient'
OVS_DPDK = 'dpdk'
OVS_DPDK_PORT_TYPES = [OVS_DPDK_VHOST_USER, OVS_DPDK_VHOST_USER_CLIENT]
OVS_DPDK_PORT_TYPES = [OVS_DPDK_VHOST_USER,
OVS_DPDK_VHOST_USER_CLIENT,
OVS_DPDK,
]
# default ovs vhost-user socket location
VHOST_USER_SOCKET_DIR = '/var/run/openvswitch'

View File

@ -0,0 +1,6 @@
---
features:
- A OVS port type ``OVS_DPDK``) has been added.
OVS_DPDK_PORT_TYPES was extended with new OVS port type.