From patchwork Wed Sep 1 12:19:20 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jasvinder Singh X-Patchwork-Id: 97684 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 E61A9A0C43; Wed, 1 Sep 2021 14:19:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B249A40140; Wed, 1 Sep 2021 14:19:27 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 653CF4013F for ; Wed, 1 Sep 2021 14:19:26 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10093"; a="198287500" X-IronPort-AV: E=Sophos;i="5.84,369,1620716400"; d="scan'208";a="198287500" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Sep 2021 05:19:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,369,1620716400"; d="scan'208";a="532141438" Received: from silpixa00400517.ir.intel.com ([10.237.214.118]) by FMSMGA003.fm.intel.com with ESMTP; 01 Sep 2021 05:19:20 -0700 From: Jasvinder Singh To: dev@dpdk.org Cc: cristian.dumitrescu@intel.com, mdr@ashroe.eu Date: Wed, 1 Sep 2021 13:19:20 +0100 Message-Id: <20210901121920.3885000-1-jasvinder.singh@intel.com> X-Mailer: git-send-email 2.26.3 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] sched: remove experimental tag from the 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" This API was introduced in 18.05, therefore removing experimental tag to promote it to stable state Signed-off-by: Jasvinder Singh Acked-by: Ray Kinsella Acked-by: Cristian Dumitrescu Acked-by: Ray Kinsella --- lib/sched/rte_sched.h | 4 ---- lib/sched/version.map | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/sched/rte_sched.h b/lib/sched/rte_sched.h index c1a772b70c..cb851301e9 100644 --- a/lib/sched/rte_sched.h +++ b/lib/sched/rte_sched.h @@ -301,9 +301,6 @@ void rte_sched_port_free(struct rte_sched_port *port); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Hierarchical scheduler pipe profile add * * @param port @@ -317,7 +314,6 @@ rte_sched_port_free(struct rte_sched_port *port); * @return * 0 upon success, error code otherwise */ -__rte_experimental int rte_sched_subport_pipe_profile_add(struct rte_sched_port *port, uint32_t subport_id, diff --git a/lib/sched/version.map b/lib/sched/version.map index 53c337b143..a6e505c8ac 100644 --- a/lib/sched/version.map +++ b/lib/sched/version.map @@ -19,6 +19,7 @@ DPDK_22 { rte_sched_port_pkt_write; rte_sched_queue_read_stats; rte_sched_subport_config; + rte_sched_subport_pipe_profile_add; rte_sched_subport_read_stats; local: *; @@ -27,7 +28,6 @@ DPDK_22 { EXPERIMENTAL { global: - rte_sched_subport_pipe_profile_add; # added in 20.11 rte_sched_port_subport_profile_add; };