diff --git a/doc/guides/rel_notes/release_22_11.rst b/doc/guides/rel_notes/release_22_11.rst index 455c7f2b8d..342a1dd720 100644 --- a/doc/guides/rel_notes/release_22_11.rst +++ b/doc/guides/rel_notes/release_22_11.rst @@ -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. diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h index 1a3cab9ee5..09493d9c80 100644 --- a/lib/ethdev/rte_flow.h +++ b/lib/ethdev/rte_flow.h @@ -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); diff --git a/lib/ethdev/version.map b/lib/ethdev/version.map index 2ecc1af571..25e54f9d3e 100644 --- a/lib/ethdev/version.map +++ b/lib/ethdev/version.map @@ -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;