* Re: [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes
2018-02-09 14:27 [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes Xiao Wang
@ 2018-02-09 9:56 ` Mcnamara, John
2018-02-13 23:31 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Mcnamara, John @ 2018-02-09 9:56 UTC (permalink / raw)
To: Wang, Xiao W, dev; +Cc: thomas
> -----Original Message-----
> From: Wang, Xiao W
> Sent: Friday, February 9, 2018 2:28 PM
> To: dev@dpdk.org
> Cc: Mcnamara, John <john.mcnamara@intel.com>; thomas@monjalon.net; Wang,
> Xiao W <xiao.w.wang@intel.com>
> Subject: [PATCH] doc: add virtio GUEST ANNOUNCE to release notes
>
> Signed-off-by: Xiao Wang <xiao.w.wang@intel.com>
> ---
> doc/guides/rel_notes/release_18_02.rst | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/doc/guides/rel_notes/release_18_02.rst
> b/doc/guides/rel_notes/release_18_02.rst
> index c42a1d64b..d9718c174 100644
> --- a/doc/guides/rel_notes/release_18_02.rst
> +++ b/doc/guides/rel_notes/release_18_02.rst
> @@ -230,6 +230,12 @@ New Features
> current build system using ``make``. For instructions on how to do a
> DPDK build
> using the new system, see the instructions in ``doc/build-sdk-
> meson.txt``.
>
> +* **Added VIRTIO_NET_F_GUEST_ANNOUNCE feature support in virtio pmd.**
> +
> + In scenario where the vhost backend doesn't have the ability to
> + generate RARP packet, the VM running virtio pmd can still be live
> + migrated if VIRTIO_NET_F_GUEST_ANNOUNCE feature is negotiated.
> +
> .. note::
>
> This new build system support is incomplete at this point and is
> added
The text has been added between the previous section and a note belonging
to the previous section.
However, we can fix this in the final revision of the release notes, so:
Acked-by: John McNamara <john.mcnamara@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes
@ 2018-02-09 14:27 Xiao Wang
2018-02-09 9:56 ` Mcnamara, John
0 siblings, 1 reply; 4+ messages in thread
From: Xiao Wang @ 2018-02-09 14:27 UTC (permalink / raw)
To: dev; +Cc: john.mcnamara, thomas, Xiao Wang
Signed-off-by: Xiao Wang <xiao.w.wang@intel.com>
---
doc/guides/rel_notes/release_18_02.rst | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/doc/guides/rel_notes/release_18_02.rst b/doc/guides/rel_notes/release_18_02.rst
index c42a1d64b..d9718c174 100644
--- a/doc/guides/rel_notes/release_18_02.rst
+++ b/doc/guides/rel_notes/release_18_02.rst
@@ -230,6 +230,12 @@ New Features
current build system using ``make``. For instructions on how to do a DPDK build
using the new system, see the instructions in ``doc/build-sdk-meson.txt``.
+* **Added VIRTIO_NET_F_GUEST_ANNOUNCE feature support in virtio pmd.**
+
+ In scenario where the vhost backend doesn't have the ability to generate RARP
+ packet, the VM running virtio pmd can still be live migrated if
+ VIRTIO_NET_F_GUEST_ANNOUNCE feature is negotiated.
+
.. note::
This new build system support is incomplete at this point and is added
--
2.15.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes
2018-02-09 9:56 ` Mcnamara, John
@ 2018-02-13 23:31 ` Thomas Monjalon
2018-02-14 17:57 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2018-02-13 23:31 UTC (permalink / raw)
To: Mcnamara, John, Wang, Xiao W; +Cc: dev
09/02/2018 10:56, Mcnamara, John:
> From: Wang, Xiao W
> > +* **Added VIRTIO_NET_F_GUEST_ANNOUNCE feature support in virtio pmd.**
> > +
> > + In scenario where the vhost backend doesn't have the ability to
> > + generate RARP packet, the VM running virtio pmd can still be live
> > + migrated if VIRTIO_NET_F_GUEST_ANNOUNCE feature is negotiated.
> > +
> > .. note::
> >
> > This new build system support is incomplete at this point and is
> > added
>
> The text has been added between the previous section and a note belonging
> to the previous section.
Please, can you merge this text with the item added by Jiayu about migration?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes
2018-02-13 23:31 ` Thomas Monjalon
@ 2018-02-14 17:57 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2018-02-14 17:57 UTC (permalink / raw)
To: Wang, Xiao W; +Cc: dev, Mcnamara, John
14/02/2018 00:31, Thomas Monjalon:
> 09/02/2018 10:56, Mcnamara, John:
> > From: Wang, Xiao W
> > > +* **Added VIRTIO_NET_F_GUEST_ANNOUNCE feature support in virtio pmd.**
> > > +
> > > + In scenario where the vhost backend doesn't have the ability to
> > > + generate RARP packet, the VM running virtio pmd can still be live
> > > + migrated if VIRTIO_NET_F_GUEST_ANNOUNCE feature is negotiated.
> > > +
> > > .. note::
> > >
> > > This new build system support is incomplete at this point and is
> > > added
> >
> > The text has been added between the previous section and a note belonging
> > to the previous section.
>
> Please, can you merge this text with the item added by Jiayu about migration?
Applied as it is reworded in the final release notes patch by John.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-14 17:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-09 14:27 [dpdk-dev] [PATCH] doc: add virtio GUEST ANNOUNCE to release notes Xiao Wang
2018-02-09 9:56 ` Mcnamara, John
2018-02-13 23:31 ` Thomas Monjalon
2018-02-14 17:57 ` 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).