From patchwork Fri Aug 12 19:18:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Malov X-Patchwork-Id: 114934 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 93745A0543; Fri, 12 Aug 2022 21:18:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E6D6242C06; Fri, 12 Aug 2022 21:18:32 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 4365140A83 for ; Fri, 12 Aug 2022 21:18:30 +0200 (CEST) Received: from bree.oktetlabs.ru (bree.oktetlabs.ru [192.168.34.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPS id E8465B5; Fri, 12 Aug 2022 22:18:29 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru E8465B5 Authentication-Results: shelob.oktetlabs.ru/E8465B5; dkim=none; dkim-atps=neutral From: Ivan Malov To: dev@dpdk.org Cc: Ori Kam , Eli Britstein , Ilya Maximets , Thomas Monjalon , Stephen Hemminger , Jerin Jacob , Andrew Rybchenko , Ferruh Yigit Subject: [PATCH 02/13] ethdev: strip experimental tag off port ID items and actions Date: Fri, 12 Aug 2022 22:18:16 +0300 Message-Id: <20220812191827.3187441-3-ivan.malov@oktetlabs.ru> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220812191827.3187441-1-ivan.malov@oktetlabs.ru> References: <20220812191827.3187441-1-ivan.malov@oktetlabs.ru> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The following set of primitives has been introduced in 21.11: - RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR - RTE_FLOW_ACTION_TYPE_REPRESENTED_PORT - RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR - RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT Since then, no one has requested any fixes. At the same time, the set 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 Reviewed-by: Andrew Rybchenko Acked-by: Ori Kam --- doc/guides/rel_notes/release_22_11.rst | 8 ++++++++ lib/ethdev/rte_flow.h | 6 ------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/doc/guides/rel_notes/release_22_11.rst b/doc/guides/rel_notes/release_22_11.rst index 6760ab8b87..f039b857e2 100644 --- a/doc/guides/rel_notes/release_22_11.rst +++ b/doc/guides/rel_notes/release_22_11.rst @@ -87,6 +87,14 @@ API Changes * ethdev: promoted ``rte_eth_rx_metadata_negotiate()`` from experimental to stable. +* ethdev: promoted the following flow primitives + from experimental to stable: + + - ``RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR`` + - ``RTE_FLOW_ACTION_TYPE_REPRESENTED_PORT`` + - ``RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR`` + - ``RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT`` + ABI Changes ----------- diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h index a79f1e7ef0..e5d2d87403 100644 --- a/lib/ethdev/rte_flow.h +++ b/lib/ethdev/rte_flow.h @@ -1918,9 +1918,6 @@ static const struct rte_flow_item_conntrack rte_flow_item_conntrack_mask = { #endif /** - * @warning - * @b EXPERIMENTAL: this structure may change without prior notice - * * Provides an ethdev port ID for use with the following items: * RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR, * RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT. @@ -3643,9 +3640,6 @@ struct rte_flow_action_meter_color { }; /** - * @warning - * @b EXPERIMENTAL: this structure may change without prior notice - * * Provides an ethdev port ID for use with the following actions: * RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR, * RTE_FLOW_ACTION_TYPE_REPRESENTED_PORT.