From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,HK_RANDOM_FROM,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4D395C432BE for ; Wed, 1 Sep 2021 02:03:24 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id ADFE160F56 for ; Wed, 1 Sep 2021 02:03:23 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org ADFE160F56 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E1C7F4013F; Wed, 1 Sep 2021 04:03:22 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id E3F4D40041 for ; Wed, 1 Sep 2021 04:03:20 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10093"; a="215473384" X-IronPort-AV: E=Sophos;i="5.84,368,1620716400"; d="scan'208";a="215473384" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Aug 2021 19:03:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,368,1620716400"; d="scan'208";a="460439068" Received: from dpdk-xiaoyunl.sh.intel.com ([10.67.110.197]) by fmsmga007.fm.intel.com with ESMTP; 31 Aug 2021 19:03:17 -0700 From: Xiaoyun Li To: Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Ray Kinsella Cc: dev@dpdk.org, Xiaoyun Li Date: Wed, 1 Sep 2021 09:50:54 +0800 Message-Id: <20210901015054.340542-1-xiaoyun.li@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] ethdev: remove experimental flag from getting intr fd API 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" Remove the experimental tag for rte_eth_dev_rx_intr_ctl_q_get_fd API that was introduced in 18.11 and have been around for 11 releases. Signed-off-by: Xiaoyun Li --- lib/ethdev/rte_ethdev.h | 4 ---- lib/ethdev/version.map | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index d2b27c351f..2ccd651490 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -3647,9 +3647,6 @@ int rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id, int epfd, int op, void *data); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Get interrupt fd per Rx queue. * * @param port_id @@ -3663,7 +3660,6 @@ int rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id, * successful. * - (-1) on error. */ -__rte_experimental int rte_eth_dev_rx_intr_ctl_q_get_fd(uint16_t port_id, uint16_t queue_id); diff --git a/lib/ethdev/version.map b/lib/ethdev/version.map index 3eece75b72..a0fc4826a1 100644 --- a/lib/ethdev/version.map +++ b/lib/ethdev/version.map @@ -42,6 +42,7 @@ DPDK_22 { rte_eth_dev_rss_reta_update; rte_eth_dev_rx_intr_ctl; rte_eth_dev_rx_intr_ctl_q; + rte_eth_dev_rx_intr_ctl_q_get_fd; rte_eth_dev_rx_intr_disable; rte_eth_dev_rx_intr_enable; rte_eth_dev_rx_offload_name; @@ -154,7 +155,6 @@ EXPERIMENTAL { rte_eth_dev_get_module_info; # added in 18.11 - rte_eth_dev_rx_intr_ctl_q_get_fd; rte_flow_conv; # added in 19.05 -- 2.25.1