From patchwork Mon Sep 6 05:56:18 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wang, Haiyue" X-Patchwork-Id: 98035 X-Patchwork-Delegate: ferruh.yigit@amd.com 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 420BEA0C4D; Mon, 6 Sep 2021 08:26:37 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 135B940E32; Mon, 6 Sep 2021 08:26:37 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 7DF3E40C35 for ; Mon, 6 Sep 2021 08:26:35 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10098"; a="207120727" X-IronPort-AV: E=Sophos;i="5.85,271,1624345200"; d="scan'208";a="207120727" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2021 23:26:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,271,1624345200"; d="scan'208";a="536507607" Received: from npg-dpdk-haiyue-2.sh.intel.com ([10.67.119.63]) by FMSMGA003.fm.intel.com with ESMTP; 05 Sep 2021 23:26:32 -0700 From: Haiyue Wang To: dev@dpdk.org Cc: Haiyue Wang , Ferruh Yigit , Ray Kinsella , Thomas Monjalon , Andrew Rybchenko Date: Mon, 6 Sep 2021 13:56:18 +0800 Message-Id: <20210906055618.47103-1-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 Subject: [dpdk-dev] [PATCH v2] ethdev: promote burst mode 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_eth_rx_burst_mode_get rte_eth_tx_burst_mode_get Signed-off-by: Haiyue Wang Acked-by: Ferruh Yigit Acked-by: Ray Kinsella Acked-by: Andrew Rybchenko --- v2: Drop the PMD API promote to stable --- lib/ethdev/rte_ethdev.h | 2 -- lib/ethdev/version.map | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index d2b27c351f..3277e8f8fb 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -4361,7 +4361,6 @@ int rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id, * - -ENOTSUP: routine is not supported by the device PMD. * - -EINVAL: The queue_id is out of range. */ -__rte_experimental int rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode); @@ -4383,7 +4382,6 @@ int rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id, * - -ENOTSUP: routine is not supported by the device PMD. * - -EINVAL: The queue_id is out of range. */ -__rte_experimental int rte_eth_tx_burst_mode_get(uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode); diff --git a/lib/ethdev/version.map b/lib/ethdev/version.map index 3eece75b72..6a12b0664a 100644 --- a/lib/ethdev/version.map +++ b/lib/ethdev/version.map @@ -87,6 +87,7 @@ DPDK_22 { rte_eth_promiscuous_get; rte_eth_remove_rx_callback; rte_eth_remove_tx_callback; + rte_eth_rx_burst_mode_get; rte_eth_rx_queue_info_get; rte_eth_rx_queue_setup; rte_eth_set_queue_rate_limit; @@ -104,6 +105,7 @@ DPDK_22 { rte_eth_tx_buffer_drop_callback; rte_eth_tx_buffer_init; rte_eth_tx_buffer_set_err_callback; + rte_eth_tx_burst_mode_get; rte_eth_tx_done_cleanup; rte_eth_tx_queue_info_get; rte_eth_tx_queue_setup; @@ -166,9 +168,7 @@ EXPERIMENTAL { # added in 19.11 rte_eth_dev_hairpin_capability_get; - rte_eth_rx_burst_mode_get; rte_eth_rx_hairpin_queue_setup; - rte_eth_tx_burst_mode_get; rte_eth_tx_hairpin_queue_setup; rte_flow_dynf_metadata_offs; rte_flow_dynf_metadata_mask;