From patchwork Tue Dec 17 13:07:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eelco Chaudron X-Patchwork-Id: 63970 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 77C2AA04FD; Tue, 17 Dec 2019 14:08:03 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BE55D1BECF; Tue, 17 Dec 2019 14:08:02 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 5978A1BE90 for ; Tue, 17 Dec 2019 14:08:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576588080; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=ijSE1l6fNAdfXhev6oBxq4WPnhUMeU/zRRm9jWuBLQ4=; b=jWpG+lgNolsHU2HtFWXYoNaZ+ujYSn3CKTvn6SRmkwdHiI0ggXziW1ERPRsiC0phgEcVP9 6n+I8DZLKQeIN+6xG91SeNo45htzO80TXHSUtUjJVFILh+baoc97CBOclNlqot9EVdnEaa zNTMYutCCSb3agG1QVIy4wQcBiw09So= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-139-Y7qoSa1TO6K8Jp1SzzB7-Q-1; Tue, 17 Dec 2019 08:07:57 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 38C62802E1E; Tue, 17 Dec 2019 13:07:56 +0000 (UTC) Received: from netdev64.ntdv.lab.eng.bos.redhat.com (wsfd-netdev64.ntdv.lab.eng.bos.redhat.com [10.19.188.127]) by smtp.corp.redhat.com (Postfix) with ESMTP id BCE5D1001281; Tue, 17 Dec 2019 13:07:55 +0000 (UTC) From: Eelco Chaudron To: cristian.dumitrescu@intel.com Cc: stable@dpdk.org, dev@dpdk.org Date: Tue, 17 Dec 2019 08:07:53 -0500 Message-Id: <20191217130742.165886.15691.stgit@netdev64> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: Y7qoSa1TO6K8Jp1SzzB7-Q-1 X-Mimecast-Spam-Score: 0 Subject: [dpdk-dev] [PATCH] meter: move RFC4115 trTCM APIs as none experimental X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Moved RFC4115 APIs to none experimental as they have been there since 19.02. Also, these APIs are the same as the none RFC4115 APIs. Signed-off-by: Eelco Chaudron Acked-by: Cristian Dumitrescu --- lib/librte_meter/rte_meter.h | 6 ------ lib/librte_meter/rte_meter_version.map | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/librte_meter/rte_meter.h b/lib/librte_meter/rte_meter.h index d69b118..62c8c1e 100644 --- a/lib/librte_meter/rte_meter.h +++ b/lib/librte_meter/rte_meter.h @@ -140,7 +140,6 @@ struct rte_meter_trtcm_rfc4115_params { * @return * 0 upon success, error code otherwise */ -__rte_experimental int rte_meter_trtcm_rfc4115_profile_config( struct rte_meter_trtcm_rfc4115_profile *p, @@ -187,7 +186,6 @@ struct rte_meter_trtcm_rfc4115_params { * @return * 0 upon success, error code otherwise */ -__rte_experimental int rte_meter_trtcm_rfc4115_config(struct rte_meter_trtcm_rfc4115 *m, struct rte_meter_trtcm_rfc4115_profile *p); @@ -295,7 +293,6 @@ struct rte_meter_trtcm_rfc4115_params { * @return * Color assigned to the current IP packet */ -__rte_experimental static inline enum rte_color rte_meter_trtcm_rfc4115_color_blind_check( struct rte_meter_trtcm_rfc4115 *m, @@ -322,7 +319,6 @@ struct rte_meter_trtcm_rfc4115_params { * @return * Color assigned to the current IP packet */ -__rte_experimental static inline enum rte_color rte_meter_trtcm_rfc4115_color_aware_check( struct rte_meter_trtcm_rfc4115 *m, @@ -582,7 +578,6 @@ struct rte_meter_trtcm_rfc4115 { return RTE_COLOR_GREEN; } -__rte_experimental static inline enum rte_color rte_meter_trtcm_rfc4115_color_blind_check( struct rte_meter_trtcm_rfc4115 *m, @@ -626,7 +621,6 @@ struct rte_meter_trtcm_rfc4115 { return RTE_COLOR_RED; } -__rte_experimental static inline enum rte_color rte_meter_trtcm_rfc4115_color_aware_check( struct rte_meter_trtcm_rfc4115 *m, diff --git a/lib/librte_meter/rte_meter_version.map b/lib/librte_meter/rte_meter_version.map index 46410b0..fc12cc0 100644 --- a/lib/librte_meter/rte_meter_version.map +++ b/lib/librte_meter/rte_meter_version.map @@ -13,11 +13,11 @@ DPDK_20.0 { local: *; }; -EXPERIMENTAL { +DPDK_20.0.1 { global: rte_meter_trtcm_rfc4115_color_aware_check; rte_meter_trtcm_rfc4115_color_blind_check; rte_meter_trtcm_rfc4115_config; rte_meter_trtcm_rfc4115_profile_config; -}; +} DPDK_20.0;