meter: remove experimental flag from RFC4115 trTCM API
authorEelco Chaudron <echaudro@redhat.com>
Tue, 17 Dec 2019 13:07:53 +0000 (08:07 -0500)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 20 Jan 2020 15:37:27 +0000 (16:37 +0100)
Moved RFC4115 APIs to non-experimental as they have been there
since 19.02. Also, these APIs are the same as the non RFC4115 APIs.

Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
lib/librte_meter/rte_meter.h
lib/librte_meter/rte_meter_version.map

index d69b118..62c8c1e 100644 (file)
@@ -140,7 +140,6 @@ rte_meter_trtcm_profile_config(struct rte_meter_trtcm_profile *p,
  * @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 @@ rte_meter_trtcm_config(struct rte_meter_trtcm *m,
  * @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 @@ rte_meter_trtcm_color_aware_check(struct rte_meter_trtcm *m,
  * @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 @@ rte_meter_trtcm_rfc4115_color_blind_check(
  * @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 @@ rte_meter_trtcm_color_aware_check(struct rte_meter_trtcm *m,
        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 @@ rte_meter_trtcm_rfc4115_color_blind_check(
        return RTE_COLOR_RED;
 }
 
-__rte_experimental
 static inline enum rte_color
 rte_meter_trtcm_rfc4115_color_aware_check(
        struct rte_meter_trtcm_rfc4115 *m,
index 46410b0..fc12cc0 100644 (file)
@@ -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;