DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: announce kni_vhost removal
@ 2016-11-17 13:27 Ferruh Yigit
  2016-11-29 13:38 ` Mcnamara, John
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Ferruh Yigit @ 2016-11-17 13:27 UTC (permalink / raw)
  To: dev; +Cc: Ferruh Yigit

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 doc/guides/prog_guide/kernel_nic_interface.rst | 2 ++
 doc/guides/rel_notes/deprecation.rst           | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/doc/guides/prog_guide/kernel_nic_interface.rst b/doc/guides/prog_guide/kernel_nic_interface.rst
index eb16e2e..4f25595 100644
--- a/doc/guides/prog_guide/kernel_nic_interface.rst
+++ b/doc/guides/prog_guide/kernel_nic_interface.rst
@@ -169,6 +169,8 @@ This provides flexibility in multiprocess scenarios
 (where the KNI is created in the primary process but the callbacks are handled in the secondary one).
 The constraint is that a single process can register and handle the requests.
 
+.. _kni_vhost_backend-label:
+
 KNI Working as a Kernel vHost Backend
 -------------------------------------
 
diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 2d17bc6..956473a 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -71,3 +71,9 @@ Deprecation Notices
 * mempool: The functions for single/multi producer/consumer are deprecated
   and will be removed in 17.02.
   It is replaced by ``rte_mempool_generic_get/put`` functions.
+
+* kni: Remove :ref:`kni_vhost_backend-label` feature (KNI_VHOST) in 17.05 release.
+  :doc:`Vhost Library </prog_guide/vhost_lib>` is currently preferred method for
+  guest - host communication. Just for clarification, this is not to remove KNI
+  or VHOST feature, but KNI_VHOST which is a KNI feature enabled via a compile
+  time option, and disabled by default.
-- 
2.9.3

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2016-11-17 13:27 [dpdk-dev] [PATCH] doc: announce kni_vhost removal Ferruh Yigit
@ 2016-11-29 13:38 ` Mcnamara, John
  2017-02-07 10:52 ` Ferruh Yigit
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Mcnamara, John @ 2016-11-29 13:38 UTC (permalink / raw)
  To: Yigit, Ferruh, dev; +Cc: Yigit, Ferruh



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ferruh Yigit
> Sent: Thursday, November 17, 2016 1:27 PM
> To: dev@dpdk.org
> Cc: Yigit, Ferruh <ferruh.yigit@intel.com>
> Subject: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Acked-by: John McNamara <john.mcnamara@intel.com>

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2016-11-17 13:27 [dpdk-dev] [PATCH] doc: announce kni_vhost removal Ferruh Yigit
  2016-11-29 13:38 ` Mcnamara, John
@ 2017-02-07 10:52 ` Ferruh Yigit
  2017-02-14 10:48 ` Thomas Monjalon
  2017-02-14 20:31 ` Thomas Monjalon
  3 siblings, 0 replies; 7+ messages in thread
From: Ferruh Yigit @ 2017-02-07 10:52 UTC (permalink / raw)
  To: dev

On 11/17/2016 1:27 PM, Ferruh Yigit wrote:
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
>  doc/guides/prog_guide/kernel_nic_interface.rst | 2 ++
>  doc/guides/rel_notes/deprecation.rst           | 6 ++++++
>  2 files changed, 8 insertions(+)
> 
> diff --git a/doc/guides/prog_guide/kernel_nic_interface.rst b/doc/guides/prog_guide/kernel_nic_interface.rst
> index eb16e2e..4f25595 100644
> --- a/doc/guides/prog_guide/kernel_nic_interface.rst
> +++ b/doc/guides/prog_guide/kernel_nic_interface.rst
> @@ -169,6 +169,8 @@ This provides flexibility in multiprocess scenarios
>  (where the KNI is created in the primary process but the callbacks are handled in the secondary one).
>  The constraint is that a single process can register and handle the requests.
>  
> +.. _kni_vhost_backend-label:
> +
>  KNI Working as a Kernel vHost Backend
>  -------------------------------------
>  
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 2d17bc6..956473a 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -71,3 +71,9 @@ Deprecation Notices
>  * mempool: The functions for single/multi producer/consumer are deprecated
>    and will be removed in 17.02.
>    It is replaced by ``rte_mempool_generic_get/put`` functions.
> +
> +* kni: Remove :ref:`kni_vhost_backend-label` feature (KNI_VHOST) in 17.05 release.
> +  :doc:`Vhost Library </prog_guide/vhost_lib>` is currently preferred method for
> +  guest - host communication. Just for clarification, this is not to remove KNI
> +  or VHOST feature, but KNI_VHOST which is a KNI feature enabled via a compile
> +  time option, and disabled by default.
> 

Reminder for this patch.

Thanks,
ferruh

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2016-11-17 13:27 [dpdk-dev] [PATCH] doc: announce kni_vhost removal Ferruh Yigit
  2016-11-29 13:38 ` Mcnamara, John
  2017-02-07 10:52 ` Ferruh Yigit
@ 2017-02-14 10:48 ` Thomas Monjalon
  2017-02-14 11:42   ` Bruce Richardson
  2017-02-14 20:31 ` Thomas Monjalon
  3 siblings, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2017-02-14 10:48 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

2016-11-17 13:27, Ferruh Yigit:
> +* kni: Remove :ref:`kni_vhost_backend-label` feature (KNI_VHOST) in 17.05 release.
> +  :doc:`Vhost Library </prog_guide/vhost_lib>` is currently preferred method for
> +  guest - host communication. Just for clarification, this is not to remove KNI
> +  or VHOST feature, but KNI_VHOST which is a KNI feature enabled via a compile
> +  time option, and disabled by default.

Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2017-02-14 10:48 ` Thomas Monjalon
@ 2017-02-14 11:42   ` Bruce Richardson
  2017-02-14 11:46     ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 7+ messages in thread
From: Bruce Richardson @ 2017-02-14 11:42 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: Ferruh Yigit, dev

On Tue, Feb 14, 2017 at 11:48:29AM +0100, Thomas Monjalon wrote:
> 2016-11-17 13:27, Ferruh Yigit:
> > +* kni: Remove :ref:`kni_vhost_backend-label` feature (KNI_VHOST) in 17.05 release.
> > +  :doc:`Vhost Library </prog_guide/vhost_lib>` is currently preferred method for
> > +  guest - host communication. Just for clarification, this is not to remove KNI
> > +  or VHOST feature, but KNI_VHOST which is a KNI feature enabled via a compile
> > +  time option, and disabled by default.
> 
> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>

Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2017-02-14 11:42   ` Bruce Richardson
@ 2017-02-14 11:46     ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 7+ messages in thread
From: De Lara Guarch, Pablo @ 2017-02-14 11:46 UTC (permalink / raw)
  To: Richardson, Bruce, Thomas Monjalon; +Cc: Yigit, Ferruh, dev



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson
> Sent: Tuesday, February 14, 2017 11:42 AM
> To: Thomas Monjalon
> Cc: Yigit, Ferruh; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
> 
> On Tue, Feb 14, 2017 at 11:48:29AM +0100, Thomas Monjalon wrote:
> > 2016-11-17 13:27, Ferruh Yigit:
> > > +* kni: Remove :ref:`kni_vhost_backend-label` feature (KNI_VHOST) in
> 17.05 release.
> > > +  :doc:`Vhost Library </prog_guide/vhost_lib>` is currently preferred
> method for
> > > +  guest - host communication. Just for clarification, this is not to
> remove KNI
> > > +  or VHOST feature, but KNI_VHOST which is a KNI feature enabled via
> a compile
> > > +  time option, and disabled by default.
> >
> > Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
> 
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

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

* Re: [dpdk-dev] [PATCH] doc: announce kni_vhost removal
  2016-11-17 13:27 [dpdk-dev] [PATCH] doc: announce kni_vhost removal Ferruh Yigit
                   ` (2 preceding siblings ...)
  2017-02-14 10:48 ` Thomas Monjalon
@ 2017-02-14 20:31 ` Thomas Monjalon
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2017-02-14 20:31 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

Applied

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

end of thread, other threads:[~2017-02-14 20:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-17 13:27 [dpdk-dev] [PATCH] doc: announce kni_vhost removal Ferruh Yigit
2016-11-29 13:38 ` Mcnamara, John
2017-02-07 10:52 ` Ferruh Yigit
2017-02-14 10:48 ` Thomas Monjalon
2017-02-14 11:42   ` Bruce Richardson
2017-02-14 11:46     ` De Lara Guarch, Pablo
2017-02-14 20:31 ` 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).