DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 0/2] vhost: v21.11 deprecation notices
@ 2021-07-30  8:12 Maxime Coquelin
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
  0 siblings, 2 replies; 9+ messages in thread
From: Maxime Coquelin @ 2021-07-30  8:12 UTC (permalink / raw)
  To: dev, chenbo.xia, amorenoz, bruce.richardson, ferruh.yigit,
	thomas, aconole
  Cc: Maxime Coquelin

Two deprecations planned for DPDK v21.11 in Vhost:
 - marking vDPA driver API as internal
 - prefixing Vhost ops struct with rte_

Maxime Coquelin (2):
  vhost: announce vDPA driver API marking as internal
  vhost: notice Vhost ops struct renaming

 doc/guides/rel_notes/deprecation.rst | 7 +++++++
 1 file changed, 7 insertions(+)

-- 
2.31.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal
  2021-07-30  8:12 [dpdk-dev] [PATCH v2 0/2] vhost: v21.11 deprecation notices Maxime Coquelin
@ 2021-07-30  8:12 ` Maxime Coquelin
  2021-07-31 12:42   ` Andrew Rybchenko
                     ` (2 more replies)
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
  1 sibling, 3 replies; 9+ messages in thread
From: Maxime Coquelin @ 2021-07-30  8:12 UTC (permalink / raw)
  To: dev, chenbo.xia, amorenoz, bruce.richardson, ferruh.yigit,
	thomas, aconole
  Cc: Maxime Coquelin

This patch announces the marking of all the vDPA driver APIs
as internal.

Acked-by: Chenbo Xia <chenbo.xia@intel.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
---
 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 9584d6bfd7..b34bed61a6 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -147,3 +147,7 @@ Deprecation Notices
 * cmdline: ``cmdline`` structure will be made opaque to hide platform-specific
   content. On Linux and FreeBSD, supported prior to DPDK 20.11,
   original structure will be kept until DPDK 21.11.
+
+* vhost: ``rte_vdpa_register_device``, ``rte_vdpa_unregister_device``,
+  ``rte_vhost_host_notifier_ctrl`` and ``rte_vdpa_relay_vring_used`` vDPA
+  driver API will be marked as internal in DPDK v21.11.
-- 
2.31.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming
  2021-07-30  8:12 [dpdk-dev] [PATCH v2 0/2] vhost: v21.11 deprecation notices Maxime Coquelin
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
@ 2021-07-30  8:12 ` Maxime Coquelin
  2021-07-31 12:43   ` Andrew Rybchenko
                     ` (2 more replies)
  1 sibling, 3 replies; 9+ messages in thread
From: Maxime Coquelin @ 2021-07-30  8:12 UTC (permalink / raw)
  To: dev, chenbo.xia, amorenoz, bruce.richardson, ferruh.yigit,
	thomas, aconole
  Cc: Maxime Coquelin

This patch announces the renaming of struct
vhost_device_ops to rte_vhost_device_ops in DPDK v21.11.

Acked-by: Chenbo Xia <chenbo.xia@intel.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
---
 doc/guides/rel_notes/deprecation.rst | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index b34bed61a6..76ebf162bd 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -151,3 +151,6 @@ Deprecation Notices
 * vhost: ``rte_vdpa_register_device``, ``rte_vdpa_unregister_device``,
   ``rte_vhost_host_notifier_ctrl`` and ``rte_vdpa_relay_vring_used`` vDPA
   driver API will be marked as internal in DPDK v21.11.
+
+* vhost: rename ``struct vhost_device_ops`` to ``struct rte_vhost_device_ops``
+  int DPDK v21.11.
-- 
2.31.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
@ 2021-07-31 12:42   ` Andrew Rybchenko
  2021-08-06  8:38   ` Liu, Yong
  2021-08-07 18:22   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Andrew Rybchenko @ 2021-07-31 12:42 UTC (permalink / raw)
  To: Maxime Coquelin, dev, chenbo.xia, amorenoz, bruce.richardson,
	ferruh.yigit, thomas, aconole

On 7/30/21 11:12 AM, Maxime Coquelin wrote:
> This patch announces the marking of all the vDPA driver APIs
> as internal.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
@ 2021-07-31 12:43   ` Andrew Rybchenko
  2021-08-06  8:40   ` Liu, Yong
  2021-08-07 18:26   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Andrew Rybchenko @ 2021-07-31 12:43 UTC (permalink / raw)
  To: Maxime Coquelin, dev, chenbo.xia, amorenoz, bruce.richardson,
	ferruh.yigit, thomas, aconole

On 7/30/21 11:12 AM, Maxime Coquelin wrote:
> This patch announces the renaming of struct
> vhost_device_ops to rte_vhost_device_ops in DPDK v21.11.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
  2021-07-31 12:42   ` Andrew Rybchenko
@ 2021-08-06  8:38   ` Liu, Yong
  2021-08-07 18:22   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Liu, Yong @ 2021-08-06  8:38 UTC (permalink / raw)
  To: Maxime Coquelin, dev, Xia, Chenbo, amorenoz, Richardson, Bruce,
	Yigit, Ferruh, thomas, aconole



> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Maxime Coquelin
> Sent: Friday, July 30, 2021 4:12 PM
> To: dev@dpdk.org; Xia, Chenbo <chenbo.xia@intel.com>;
> amorenoz@redhat.com; Richardson, Bruce <bruce.richardson@intel.com>;
> Yigit, Ferruh <ferruh.yigit@intel.com>; thomas@monjalon.net;
> aconole@redhat.com
> Cc: Maxime Coquelin <maxime.coquelin@redhat.com>
> Subject: [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking
> as internal
> 
> This patch announces the marking of all the vDPA driver APIs
> as internal.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> ---
>  doc/guides/rel_notes/deprecation.rst | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 9584d6bfd7..b34bed61a6 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -147,3 +147,7 @@ Deprecation Notices
>  * cmdline: ``cmdline`` structure will be made opaque to hide platform-
> specific
>    content. On Linux and FreeBSD, supported prior to DPDK 20.11,
>    original structure will be kept until DPDK 21.11.
> +
> +* vhost: ``rte_vdpa_register_device``, ``rte_vdpa_unregister_device``,
> +  ``rte_vhost_host_notifier_ctrl`` and ``rte_vdpa_relay_vring_used`` vDPA
> +  driver API will be marked as internal in DPDK v21.11.
> --
> 2.31.1


Acked-by: Marvin Liu <yong.liu@intel.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
  2021-07-31 12:43   ` Andrew Rybchenko
@ 2021-08-06  8:40   ` Liu, Yong
  2021-08-07 18:26   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Liu, Yong @ 2021-08-06  8:40 UTC (permalink / raw)
  To: Maxime Coquelin, dev, Xia, Chenbo, amorenoz, Richardson, Bruce,
	Yigit, Ferruh, thomas, aconole

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Maxime Coquelin
> Sent: Friday, July 30, 2021 4:13 PM
> To: dev@dpdk.org; Xia, Chenbo <chenbo.xia@intel.com>;
> amorenoz@redhat.com; Richardson, Bruce <bruce.richardson@intel.com>;
> Yigit, Ferruh <ferruh.yigit@intel.com>; thomas@monjalon.net;
> aconole@redhat.com
> Cc: Maxime Coquelin <maxime.coquelin@redhat.com>
> Subject: [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming
> 
> This patch announces the renaming of struct
> vhost_device_ops to rte_vhost_device_ops in DPDK v21.11.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> ---
>  doc/guides/rel_notes/deprecation.rst | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index b34bed61a6..76ebf162bd 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -151,3 +151,6 @@ Deprecation Notices
>  * vhost: ``rte_vdpa_register_device``, ``rte_vdpa_unregister_device``,
>    ``rte_vhost_host_notifier_ctrl`` and ``rte_vdpa_relay_vring_used`` vDPA
>    driver API will be marked as internal in DPDK v21.11.
> +
> +* vhost: rename ``struct vhost_device_ops`` to ``struct
> rte_vhost_device_ops``
> +  int DPDK v21.11.
> --
> 2.31.1

Acked-by: Marvin Liu <yong.liu@intel.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
  2021-07-31 12:42   ` Andrew Rybchenko
  2021-08-06  8:38   ` Liu, Yong
@ 2021-08-07 18:22   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2021-08-07 18:22 UTC (permalink / raw)
  To: chenbo.xia
  Cc: dev, amorenoz, bruce.richardson, ferruh.yigit, aconole, Maxime Coquelin

30/07/2021 10:12, Maxime Coquelin:
> This patch announces the marking of all the vDPA driver APIs
> as internal.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> ---
> +* vhost: ``rte_vdpa_register_device``, ``rte_vdpa_unregister_device``,
> +  ``rte_vhost_host_notifier_ctrl`` and ``rte_vdpa_relay_vring_used`` vDPA
> +  driver API will be marked as internal in DPDK v21.11.

"driver API" is replaced with "driver interface" for correctness.

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Marvin Liu <yong.liu@intel.com>

Applied, thanks.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming
  2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
  2021-07-31 12:43   ` Andrew Rybchenko
  2021-08-06  8:40   ` Liu, Yong
@ 2021-08-07 18:26   ` Thomas Monjalon
  2 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2021-08-07 18:26 UTC (permalink / raw)
  To: Maxime Coquelin
  Cc: dev, chenbo.xia, amorenoz, bruce.richardson, ferruh.yigit, aconole

30/07/2021 10:12, Maxime Coquelin:
> This patch announces the renaming of struct
> vhost_device_ops to rte_vhost_device_ops in DPDK v21.11.
> 
> Acked-by: Chenbo Xia <chenbo.xia@intel.com>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> ---
> +* vhost: rename ``struct vhost_device_ops`` to ``struct rte_vhost_device_ops``
> +  int DPDK v21.11.

s/int/in/

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Adrian Moreno <amorenoz@redhat.com>
Acked-by: Marvin Liu <yong.liu@intel.com>

Applied, thanks.





^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-08-07 18:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-30  8:12 [dpdk-dev] [PATCH v2 0/2] vhost: v21.11 deprecation notices Maxime Coquelin
2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 1/2] vhost: announce vDPA driver API marking as internal Maxime Coquelin
2021-07-31 12:42   ` Andrew Rybchenko
2021-08-06  8:38   ` Liu, Yong
2021-08-07 18:22   ` Thomas Monjalon
2021-07-30  8:12 ` [dpdk-dev] [PATCH v2 2/2] vhost: notice Vhost ops struct renaming Maxime Coquelin
2021-07-31 12:43   ` Andrew Rybchenko
2021-08-06  8:40   ` Liu, Yong
2021-08-07 18:26   ` 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).