* [dpdk-dev] [PATCH] sched: remove experimental tag from the API
@ 2021-09-01 12:19 Jasvinder Singh
2021-09-01 13:47 ` Kinsella, Ray
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jasvinder Singh @ 2021-09-01 12:19 UTC (permalink / raw)
To: dev; +Cc: cristian.dumitrescu, mdr
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>
---
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;
};
--
2.26.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] sched: remove experimental tag from the API
2021-09-01 12:19 [dpdk-dev] [PATCH] sched: remove experimental tag from the API Jasvinder Singh
@ 2021-09-01 13:47 ` Kinsella, Ray
2021-10-12 20:34 ` Dumitrescu, Cristian
2021-10-13 8:52 ` Kinsella, Ray
2 siblings, 0 replies; 5+ messages in thread
From: Kinsella, Ray @ 2021-09-01 13:47 UTC (permalink / raw)
To: Jasvinder Singh, dev; +Cc: cristian.dumitrescu
On 01/09/2021 13:19, Jasvinder Singh wrote:
> 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>
> ---
> lib/sched/rte_sched.h | 4 ----
> lib/sched/version.map | 2 +-
> 2 files changed, 1 insertion(+), 5 deletions(-)
>
Acked-by: Ray Kinsella <ashroe.eu>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] sched: remove experimental tag from the API
2021-09-01 12:19 [dpdk-dev] [PATCH] sched: remove experimental tag from the API Jasvinder Singh
2021-09-01 13:47 ` Kinsella, Ray
@ 2021-10-12 20:34 ` Dumitrescu, Cristian
2021-10-13 8:52 ` Kinsella, Ray
2 siblings, 0 replies; 5+ messages in thread
From: Dumitrescu, Cristian @ 2021-10-12 20:34 UTC (permalink / raw)
To: Singh, Jasvinder, dev; +Cc: mdr
> -----Original Message-----
> From: Singh, Jasvinder <jasvinder.singh@intel.com>
> Sent: Wednesday, September 1, 2021 1:19 PM
> To: dev@dpdk.org
> Cc: Dumitrescu, Cristian <cristian.dumitrescu@intel.com>; mdr@ashroe.eu
> Subject: [PATCH] sched: remove experimental tag from the API
>
> 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>
> ---
> 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;
> };
> --
> 2.26.3
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] sched: remove experimental tag from the API
2021-09-01 12:19 [dpdk-dev] [PATCH] sched: remove experimental tag from the API Jasvinder Singh
2021-09-01 13:47 ` Kinsella, Ray
2021-10-12 20:34 ` Dumitrescu, Cristian
@ 2021-10-13 8:52 ` Kinsella, Ray
2021-10-25 13:16 ` Thomas Monjalon
2 siblings, 1 reply; 5+ messages in thread
From: Kinsella, Ray @ 2021-10-13 8:52 UTC (permalink / raw)
To: Jasvinder Singh, dev; +Cc: cristian.dumitrescu
On 01/09/2021 13:19, Jasvinder Singh wrote:
> 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>
> ---
> lib/sched/rte_sched.h | 4 ----
> lib/sched/version.map | 2 +-
> 2 files changed, 1 insertion(+), 5 deletions(-)
>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] sched: remove experimental tag from the API
2021-10-13 8:52 ` Kinsella, Ray
@ 2021-10-25 13:16 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2021-10-25 13:16 UTC (permalink / raw)
To: Jasvinder Singh; +Cc: dev, cristian.dumitrescu, Kinsella, Ray
> > 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: Ray Kinsella <mdr@ashroe.eu>
Applied, thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-25 13:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01 12:19 [dpdk-dev] [PATCH] sched: remove experimental tag from the API Jasvinder Singh
2021-09-01 13:47 ` Kinsella, Ray
2021-10-12 20:34 ` Dumitrescu, Cristian
2021-10-13 8:52 ` Kinsella, Ray
2021-10-25 13:16 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).