* [dpdk-dev] [PATCH] rawdev: fix to remove EXPERIMENTAL from comment
@ 2020-07-07 6:53 Hemant Agrawal
2020-07-07 7:22 ` Thomas Monjalon
2020-07-07 8:54 ` [dpdk-dev] [PATCH v2] " Hemant Agrawal
0 siblings, 2 replies; 7+ messages in thread
From: Hemant Agrawal @ 2020-07-07 6:53 UTC (permalink / raw)
To: dev; +Cc: thomas, bruce.richardson, david.marchand, stable, Hemant Agrawal
The experimental tags were removed, but the comment
is still having API classification as EXPERIMENTAL
Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
Cc: stable@dpdk.org
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
lib/librte_rawdev/rte_rawdev.h | 3 ---
lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
2 files changed, 6 deletions(-)
diff --git a/lib/librte_rawdev/rte_rawdev.h b/lib/librte_rawdev/rte_rawdev.h
index ed011ca22..7a1f3213e 100644
--- a/lib/librte_rawdev/rte_rawdev.h
+++ b/lib/librte_rawdev/rte_rawdev.h
@@ -12,9 +12,6 @@
*
* This API allow applications to configure and use generic devices having
* no specific type already available in DPDK.
- *
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
*/
#ifdef __cplusplus
diff --git a/lib/librte_rawdev/rte_rawdev_pmd.h b/lib/librte_rawdev/rte_rawdev_pmd.h
index cb3555ab5..4395a2182 100644
--- a/lib/librte_rawdev/rte_rawdev_pmd.h
+++ b/lib/librte_rawdev/rte_rawdev_pmd.h
@@ -11,9 +11,6 @@
* @note
* Driver facing APIs for a raw device. These are not to be called directly by
* any application.
- *
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
*/
#ifdef __cplusplus
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 6:53 [dpdk-dev] [PATCH] rawdev: fix to remove EXPERIMENTAL from comment Hemant Agrawal
@ 2020-07-07 7:22 ` Thomas Monjalon
2020-07-07 8:54 ` [dpdk-dev] [PATCH v2] " Hemant Agrawal
1 sibling, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2020-07-07 7:22 UTC (permalink / raw)
To: Hemant Agrawal; +Cc: dev, bruce.richardson, david.marchand, stable
07/07/2020 08:53, Hemant Agrawal:
> The experimental tags were removed, but the comment
> is still having API classification as EXPERIMENTAL
>
> Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
> Cc: stable@dpdk.org
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
> lib/librte_rawdev/rte_rawdev.h | 3 ---
> lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
> 2 files changed, 6 deletions(-)
Also in MAINTAINERS:
Raw device API - EXPERIMENTAL
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 6:53 [dpdk-dev] [PATCH] rawdev: fix to remove EXPERIMENTAL from comment Hemant Agrawal
2020-07-07 7:22 ` Thomas Monjalon
@ 2020-07-07 8:54 ` Hemant Agrawal
2020-07-07 9:02 ` Thomas Monjalon
2020-07-07 9:13 ` David Marchand
1 sibling, 2 replies; 7+ messages in thread
From: Hemant Agrawal @ 2020-07-07 8:54 UTC (permalink / raw)
To: dev; +Cc: thomas, bruce.richardson, david.marchand, stable, Hemant Agrawal
The experimental tags were removed, but the comment
is still having API classification as EXPERIMENTAL
Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
Cc: stable@dpdk.org
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
MAINTAINERS | 2 +-
lib/librte_rawdev/rte_rawdev.h | 3 ---
lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
3 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 27fcd6d648..6ba02d73aa 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -490,7 +490,7 @@ F: lib/librte_eventdev/*crypto_adapter*
F: app/test/test_event_crypto_adapter.c
F: doc/guides/prog_guide/event_crypto_adapter.rst
-Raw device API - EXPERIMENTAL
+Raw device API
M: Nipun Gupta <nipun.gupta@nxp.com>
M: Hemant Agrawal <hemant.agrawal@nxp.com>
F: lib/librte_rawdev/
diff --git a/lib/librte_rawdev/rte_rawdev.h b/lib/librte_rawdev/rte_rawdev.h
index ed011ca228..7a1f3213e9 100644
--- a/lib/librte_rawdev/rte_rawdev.h
+++ b/lib/librte_rawdev/rte_rawdev.h
@@ -12,9 +12,6 @@
*
* This API allow applications to configure and use generic devices having
* no specific type already available in DPDK.
- *
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
*/
#ifdef __cplusplus
diff --git a/lib/librte_rawdev/rte_rawdev_pmd.h b/lib/librte_rawdev/rte_rawdev_pmd.h
index cb3555ab50..4395a2182d 100644
--- a/lib/librte_rawdev/rte_rawdev_pmd.h
+++ b/lib/librte_rawdev/rte_rawdev_pmd.h
@@ -11,9 +11,6 @@
* @note
* Driver facing APIs for a raw device. These are not to be called directly by
* any application.
- *
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
*/
#ifdef __cplusplus
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 8:54 ` [dpdk-dev] [PATCH v2] " Hemant Agrawal
@ 2020-07-07 9:02 ` Thomas Monjalon
2020-07-07 9:08 ` Ferruh Yigit
2020-07-07 9:13 ` David Marchand
1 sibling, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2020-07-07 9:02 UTC (permalink / raw)
To: Hemant Agrawal; +Cc: dev, bruce.richardson, david.marchand, stable
07/07/2020 10:54, Hemant Agrawal:
> The experimental tags were removed, but the comment
> is still having API classification as EXPERIMENTAL
>
> Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
> Cc: stable@dpdk.org
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
> MAINTAINERS | 2 +-
> lib/librte_rawdev/rte_rawdev.h | 3 ---
> lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
> 3 files changed, 1 insertion(+), 7 deletions(-)
Acked-by: Thomas Monjalon <thomas@monjalon.net>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 9:02 ` Thomas Monjalon
@ 2020-07-07 9:08 ` Ferruh Yigit
0 siblings, 0 replies; 7+ messages in thread
From: Ferruh Yigit @ 2020-07-07 9:08 UTC (permalink / raw)
To: Thomas Monjalon, Hemant Agrawal
Cc: dev, bruce.richardson, david.marchand, stable
On 7/7/2020 10:02 AM, Thomas Monjalon wrote:
> 07/07/2020 10:54, Hemant Agrawal:
>> The experimental tags were removed, but the comment
>> is still having API classification as EXPERIMENTAL
>>
>> Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
>> ---
>> MAINTAINERS | 2 +-
>> lib/librte_rawdev/rte_rawdev.h | 3 ---
>> lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
>> 3 files changed, 1 insertion(+), 7 deletions(-)
>
> Acked-by: Thomas Monjalon <thomas@monjalon.net>
>
It seems the APIs are already part of stable API, +1 to update the documentation
to match it.
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 8:54 ` [dpdk-dev] [PATCH v2] " Hemant Agrawal
2020-07-07 9:02 ` Thomas Monjalon
@ 2020-07-07 9:13 ` David Marchand
2020-07-07 10:56 ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
1 sibling, 1 reply; 7+ messages in thread
From: David Marchand @ 2020-07-07 9:13 UTC (permalink / raw)
To: Hemant Agrawal; +Cc: dev, Thomas Monjalon, Bruce Richardson, dpdk stable
On Tue, Jul 7, 2020 at 10:58 AM Hemant Agrawal <hemant.agrawal@nxp.com> wrote:
>
> The experimental tags were removed, but the comment
> is still having API classification as EXPERIMENTAL
>
> Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
> Cc: stable@dpdk.org
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
> MAINTAINERS | 2 +-
> lib/librte_rawdev/rte_rawdev.h | 3 ---
> lib/librte_rawdev/rte_rawdev_pmd.h | 3 ---
> 3 files changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 27fcd6d648..6ba02d73aa 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -490,7 +490,7 @@ F: lib/librte_eventdev/*crypto_adapter*
> F: app/test/test_event_crypto_adapter.c
> F: doc/guides/prog_guide/event_crypto_adapter.rst
>
> -Raw device API - EXPERIMENTAL
> +Raw device API
> M: Nipun Gupta <nipun.gupta@nxp.com>
> M: Hemant Agrawal <hemant.agrawal@nxp.com>
> F: lib/librte_rawdev/
> diff --git a/lib/librte_rawdev/rte_rawdev.h b/lib/librte_rawdev/rte_rawdev.h
> index ed011ca228..7a1f3213e9 100644
> --- a/lib/librte_rawdev/rte_rawdev.h
> +++ b/lib/librte_rawdev/rte_rawdev.h
> @@ -12,9 +12,6 @@
> *
> * This API allow applications to configure and use generic devices having
> * no specific type already available in DPDK.
> - *
> - * @warning
> - * @b EXPERIMENTAL: this API may change without prior notice
> */
>
> #ifdef __cplusplus
> diff --git a/lib/librte_rawdev/rte_rawdev_pmd.h b/lib/librte_rawdev/rte_rawdev_pmd.h
> index cb3555ab50..4395a2182d 100644
> --- a/lib/librte_rawdev/rte_rawdev_pmd.h
> +++ b/lib/librte_rawdev/rte_rawdev_pmd.h
> @@ -11,9 +11,6 @@
> * @note
> * Driver facing APIs for a raw device. These are not to be called directly by
> * any application.
> - *
> - * @warning
> - * @b EXPERIMENTAL: this API may change without prior notice
> */
>
> #ifdef __cplusplus
> --
> 2.17.1
>
Acked-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [dpdk-stable] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment
2020-07-07 9:13 ` David Marchand
@ 2020-07-07 10:56 ` Thomas Monjalon
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2020-07-07 10:56 UTC (permalink / raw)
To: Hemant Agrawal
Cc: stable, dev, Bruce Richardson, David Marchand, ferruh.yigit
07/07/2020 11:13, David Marchand:
> On Tue, Jul 7, 2020 at 10:58 AM Hemant Agrawal <hemant.agrawal@nxp.com> wrote:
> >
> > The experimental tags were removed, but the comment
> > is still having API classification as EXPERIMENTAL
> >
> > Fixes: 931cc531aad2 ("rawdev: remove experimental tag")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
>
> Acked-by: David Marchand <david.marchand@redhat.com>
Applied, thanks
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-07-07 10:56 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-07 6:53 [dpdk-dev] [PATCH] rawdev: fix to remove EXPERIMENTAL from comment Hemant Agrawal
2020-07-07 7:22 ` Thomas Monjalon
2020-07-07 8:54 ` [dpdk-dev] [PATCH v2] " Hemant Agrawal
2020-07-07 9:02 ` Thomas Monjalon
2020-07-07 9:08 ` Ferruh Yigit
2020-07-07 9:13 ` David Marchand
2020-07-07 10:56 ` [dpdk-dev] [dpdk-stable] " 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).