sched: promote a function as stable
authorJasvinder Singh <jasvinder.singh@intel.com>
Wed, 1 Sep 2021 12:19:20 +0000 (13:19 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 25 Oct 2021 13:14:22 +0000 (15:14 +0200)
This API was introduced in 18.05, therefore removing
experimental tag to promote it to stable state

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
lib/sched/rte_sched.h
lib/sched/version.map

index c1a772b..cb85130 100644 (file)
@@ -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,
index 53c337b..a6e505c 100644 (file)
@@ -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;
 };