ethdev: promote flow transfer proxy API

rte_flow_pick_transfer_proxy() was first added to DPDK 21.11.
Since then, no one has requested any fixes. At the same time,
the API is required by series [1] in OvS for the new release.

[1] http://patchwork.ozlabs.org/project/openvswitch/list/?series=310415

Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
Reviewed-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Ori Kam <orika@nvidia.com>
This commit is contained in:
Ivan Malov 2022-08-12 22:18:17 +03:00 committed by Thomas Monjalon
parent 41b7de3534
commit 50a239fac6
3 changed files with 4 additions and 5 deletions

View File

@ -173,6 +173,9 @@ API Changes
- ``RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR``
- ``RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT``
* ethdev: Promoted ``rte_flow_pick_transfer_proxy()``
from experimental to stable.
* telemetry: The allowed characters in names for dictionary values
are now limited to alphanumeric characters and a small subset of additional
printable characters.

View File

@ -4788,9 +4788,6 @@ rte_flow_tunnel_item_release(uint16_t port_id,
struct rte_flow_error *error);
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.
*
* Get a proxy port to manage "transfer" flows.
*
* Managing "transfer" flows requires that the user communicate them
@ -4815,7 +4812,6 @@ rte_flow_tunnel_item_release(uint16_t port_id,
* @return
* 0 on success, a negative error code otherwise
*/
__rte_experimental
int
rte_flow_pick_transfer_proxy(uint16_t port_id, uint16_t *proxy_port_id,
struct rte_flow_error *error);

View File

@ -132,6 +132,7 @@ DPDK_23 {
rte_flow_error_set;
rte_flow_flush;
rte_flow_isolate;
rte_flow_pick_transfer_proxy;
rte_flow_query;
rte_flow_validate;
@ -253,7 +254,6 @@ EXPERIMENTAL {
rte_eth_macaddrs_get;
rte_flow_flex_item_create;
rte_flow_flex_item_release;
rte_flow_pick_transfer_proxy;
# added in 22.03
rte_eth_dev_priority_flow_ctrl_queue_configure;