From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7B11CA0C53; Wed, 1 Sep 2021 07:31:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A03BE40E01; Wed, 1 Sep 2021 07:31:47 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 9519E406A2 for ; Wed, 1 Sep 2021 07:31:45 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10093"; a="205762215" X-IronPort-AV: E=Sophos;i="5.84,368,1620716400"; d="scan'208";a="205762215" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Aug 2021 22:31:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,368,1620716400"; d="scan'208";a="460548607" Received: from npg-dpdk-haiyue-1.sh.intel.com ([10.67.118.197]) by fmsmga007.fm.intel.com with ESMTP; 31 Aug 2021 22:31:43 -0700 From: Haiyue Wang To: dev@dpdk.org Cc: mdr@ashroe.eu, thomas@monjalon.net, Haiyue Wang , Qiming Yang , Qi Zhang Date: Wed, 1 Sep 2021 13:07:06 +0800 Message-Id: <20210901050707.570163-3-haiyue.wang@intel.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20210901050707.570163-1-haiyue.wang@intel.com> References: <20210901050707.570163-1-haiyue.wang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v1 2/3] net/ice: promote some API to stable 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 Sender: "dev" The DPDK Symbol Bot reports: Please note the symbols listed below have expired. In line with the DPDK ABI policy, they should be scheduled for removal, in the next DPDK release. Symbol rte_net_ice_dynfield_proto_xtr_metadata_offs rte_net_ice_dynflag_proto_xtr_vlan_mask rte_net_ice_dynflag_proto_xtr_ipv4_mask rte_net_ice_dynflag_proto_xtr_ipv6_mask rte_net_ice_dynflag_proto_xtr_ipv6_flow_mask rte_net_ice_dynflag_proto_xtr_tcp_mask Signed-off-by: Haiyue Wang --- drivers/net/ice/rte_pmd_ice.h | 3 --- drivers/net/ice/version.map | 11 ++++------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/drivers/net/ice/rte_pmd_ice.h b/drivers/net/ice/rte_pmd_ice.h index 9a436a140b..c0f19fcc89 100644 --- a/drivers/net/ice/rte_pmd_ice.h +++ b/drivers/net/ice/rte_pmd_ice.h @@ -149,7 +149,6 @@ extern uint64_t rte_net_ice_dynflag_proto_xtr_ip_offset_mask; * @return * True if registered, false otherwise. */ -__rte_experimental static __rte_always_inline int rte_net_ice_dynf_proto_xtr_metadata_avail(void) { @@ -164,7 +163,6 @@ rte_net_ice_dynf_proto_xtr_metadata_avail(void) * @return * The saved protocol extraction metadata. */ -__rte_experimental static __rte_always_inline uint32_t rte_net_ice_dynf_proto_xtr_metadata_get(struct rte_mbuf *m) { @@ -177,7 +175,6 @@ rte_net_ice_dynf_proto_xtr_metadata_get(struct rte_mbuf *m) * @param m * The pointer to the mbuf. */ -__rte_experimental static inline void rte_net_ice_dump_proto_xtr_metadata(struct rte_mbuf *m) { diff --git a/drivers/net/ice/version.map b/drivers/net/ice/version.map index cc837f1c00..1a633fd95e 100644 --- a/drivers/net/ice/version.map +++ b/drivers/net/ice/version.map @@ -1,16 +1,13 @@ DPDK_22 { - local: *; -}; - -EXPERIMENTAL { global: - # added in 19.11 rte_net_ice_dynfield_proto_xtr_metadata_offs; - rte_net_ice_dynflag_proto_xtr_vlan_mask; + rte_net_ice_dynflag_proto_xtr_ip_offset_mask; rte_net_ice_dynflag_proto_xtr_ipv4_mask; rte_net_ice_dynflag_proto_xtr_ipv6_mask; rte_net_ice_dynflag_proto_xtr_ipv6_flow_mask; rte_net_ice_dynflag_proto_xtr_tcp_mask; - rte_net_ice_dynflag_proto_xtr_ip_offset_mask; + rte_net_ice_dynflag_proto_xtr_vlan_mask; + + local: *; }; -- 2.33.0