DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: update release notes for ice and iavf
@ 2020-08-06  5:48 Qi Zhang
  2020-08-06  8:00 ` Thomas Monjalon
  2020-08-06 11:09 ` [dpdk-dev] [PATCH v2] " Qi Zhang
  0 siblings, 2 replies; 5+ messages in thread
From: Qi Zhang @ 2020-08-06  5:48 UTC (permalink / raw)
  To: thomas; +Cc: ferruh.yigit, dev, Qi Zhang, Junfeng Guo, Jeff Guo

Update release notes by adding new features for ice and iavf PMD.

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
Signed-off-by: Jeff Guo <jia.guo@intel.com>
---
 doc/guides/rel_notes/release_20_08.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/doc/guides/rel_notes/release_20_08.rst b/doc/guides/rel_notes/release_20_08.rst
index 9761f5a4f..12d4a7789 100644
--- a/doc/guides/rel_notes/release_20_08.rst
+++ b/doc/guides/rel_notes/release_20_08.rst
@@ -171,6 +171,16 @@ New Features
 
   * Added support for DCF datapath configuration.
   * Added support for more PPPoE packet type for switch filter.
+  * Added RSS support for IPv6 32bit, 48bit, 64bit prefix.
+  * Added RSS support for GTPU, LT2P, ESP, AH, PFCP and PPPoE.
+  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
+
+ * **Updated Intel iavf driver.**
+
+  Updated iavf PMD with new features and improvements, including:
+
+  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
+  * Added IPv6 RSS support for GTPU.
 
 * **Updated Intel i40e driver.**
 
-- 
2.13.6


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

* Re: [dpdk-dev] [PATCH] doc: update release notes for ice and iavf
  2020-08-06  5:48 [dpdk-dev] [PATCH] doc: update release notes for ice and iavf Qi Zhang
@ 2020-08-06  8:00 ` Thomas Monjalon
  2020-08-06 11:09 ` [dpdk-dev] [PATCH v2] " Qi Zhang
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2020-08-06  8:00 UTC (permalink / raw)
  To: Qi Zhang; +Cc: ferruh.yigit, dev, Junfeng Guo, Jeff Guo

06/08/2020 07:48, Qi Zhang:
> Update release notes by adding new features for ice and iavf PMD.
> 
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> Signed-off-by: Jeff Guo <jia.guo@intel.com>
> ---
> @@ -171,6 +171,16 @@ New Features
>  
>    * Added support for DCF datapath configuration.
>    * Added support for more PPPoE packet type for switch filter.
> +  * Added RSS support for IPv6 32bit, 48bit, 64bit prefix.
> +  * Added RSS support for GTPU, LT2P, ESP, AH, PFCP and PPPoE.
> +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> +
> + * **Updated Intel iavf driver.**
> +
> +  Updated iavf PMD with new features and improvements, including:
> +
> +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> +  * Added IPv6 RSS support for GTPU.

That's a pity it was not updated as part of the implementation.
Please add Fixes line to reference the commits.



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

* [dpdk-dev] [PATCH v2] doc: update release notes for ice and iavf
  2020-08-06  5:48 [dpdk-dev] [PATCH] doc: update release notes for ice and iavf Qi Zhang
  2020-08-06  8:00 ` Thomas Monjalon
@ 2020-08-06 11:09 ` Qi Zhang
  2020-08-06 13:57   ` Kinsella, Ray
  1 sibling, 1 reply; 5+ messages in thread
From: Qi Zhang @ 2020-08-06 11:09 UTC (permalink / raw)
  To: thomas; +Cc: ferruh.yigit, dev, Qi Zhang, Junfeng Guo, Jeff Guo

Update release notes by adding new features for ice and iavf PMD.

Fixes: de32fa2ba27b ("net/ice: support RSS for IPv6 prefix")
Fixes: 610bc231d09b ("net/ice: support RSS for IPv4 IPv6 mix of GTP")
Fixes: a9bafa9f700c ("net/ice: support flow director GTPU outer IPv4/IPv6")
Fixes: 37e444b77814 ("net/ice: support hash for GTPU protocols")
Fixes: 54851ff3375c ("net/ice: support PPPoE RSS")

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
Signed-off-by: Jeff Guo <jia.guo@intel.com>
---

v2:
- add fix line.

 doc/guides/rel_notes/release_20_08.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/doc/guides/rel_notes/release_20_08.rst b/doc/guides/rel_notes/release_20_08.rst
index 9761f5a4f..12d4a7789 100644
--- a/doc/guides/rel_notes/release_20_08.rst
+++ b/doc/guides/rel_notes/release_20_08.rst
@@ -171,6 +171,16 @@ New Features
 
   * Added support for DCF datapath configuration.
   * Added support for more PPPoE packet type for switch filter.
+  * Added RSS support for IPv6 32bit, 48bit, 64bit prefix.
+  * Added RSS support for GTPU, LT2P, ESP, AH, PFCP and PPPoE.
+  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
+
+ * **Updated Intel iavf driver.**
+
+  Updated iavf PMD with new features and improvements, including:
+
+  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
+  * Added IPv6 RSS support for GTPU.
 
 * **Updated Intel i40e driver.**
 
-- 
2.13.6


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

* Re: [dpdk-dev] [PATCH v2] doc: update release notes for ice and iavf
  2020-08-06 11:09 ` [dpdk-dev] [PATCH v2] " Qi Zhang
@ 2020-08-06 13:57   ` Kinsella, Ray
  2020-08-06 23:19     ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Kinsella, Ray @ 2020-08-06 13:57 UTC (permalink / raw)
  To: Qi Zhang, thomas; +Cc: ferruh.yigit, dev, Junfeng Guo, Jeff Guo



On 06/08/2020 12:09, Qi Zhang wrote:
> Update release notes by adding new features for ice and iavf PMD.
> 
> Fixes: de32fa2ba27b ("net/ice: support RSS for IPv6 prefix")
> Fixes: 610bc231d09b ("net/ice: support RSS for IPv4 IPv6 mix of GTP")
> Fixes: a9bafa9f700c ("net/ice: support flow director GTPU outer IPv4/IPv6")
> Fixes: 37e444b77814 ("net/ice: support hash for GTPU protocols")
> Fixes: 54851ff3375c ("net/ice: support PPPoE RSS")
> 
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> Signed-off-by: Jeff Guo <jia.guo@intel.com>
> ---
> 
> v2:
> - add fix line.
> 
>  doc/guides/rel_notes/release_20_08.rst | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/release_20_08.rst b/doc/guides/rel_notes/release_20_08.rst
> index 9761f5a4f..12d4a7789 100644
> --- a/doc/guides/rel_notes/release_20_08.rst
> +++ b/doc/guides/rel_notes/release_20_08.rst
> @@ -171,6 +171,16 @@ New Features
>  
>    * Added support for DCF datapath configuration.
>    * Added support for more PPPoE packet type for switch filter.
> +  * Added RSS support for IPv6 32bit, 48bit, 64bit prefix.
> +  * Added RSS support for GTPU, LT2P, ESP, AH, PFCP and PPPoE.

Should be L2TP, not LT2P :-)

> +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> +
> + * **Updated Intel iavf driver.**
> +
> +  Updated iavf PMD with new features and improvements, including:
> +
> +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> +  * Added IPv6 RSS support for GTPU.
>  
>  * **Updated Intel i40e driver.**
>  
> 

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

* Re: [dpdk-dev] [PATCH v2] doc: update release notes for ice and iavf
  2020-08-06 13:57   ` Kinsella, Ray
@ 2020-08-06 23:19     ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2020-08-06 23:19 UTC (permalink / raw)
  To: Qi Zhang; +Cc: dev, ferruh.yigit, dev, Junfeng Guo, Jeff Guo, Kinsella, Ray

06/08/2020 15:57, Kinsella, Ray:
> 
> On 06/08/2020 12:09, Qi Zhang wrote:
> > Update release notes by adding new features for ice and iavf PMD.
> > 
> > Fixes: de32fa2ba27b ("net/ice: support RSS for IPv6 prefix")
> > Fixes: 610bc231d09b ("net/ice: support RSS for IPv4 IPv6 mix of GTP")
> > Fixes: a9bafa9f700c ("net/ice: support flow director GTPU outer IPv4/IPv6")
> > Fixes: 37e444b77814 ("net/ice: support hash for GTPU protocols")
> > Fixes: 54851ff3375c ("net/ice: support PPPoE RSS")
> > 
> > Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> > Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> > Signed-off-by: Jeff Guo <jia.guo@intel.com>
> > ---
> > 
> > v2:
> > - add fix line.
> > 
> >  doc/guides/rel_notes/release_20_08.rst | 10 ++++++++++
> >  1 file changed, 10 insertions(+)
> > 
> > diff --git a/doc/guides/rel_notes/release_20_08.rst b/doc/guides/rel_notes/release_20_08.rst
> > index 9761f5a4f..12d4a7789 100644
> > --- a/doc/guides/rel_notes/release_20_08.rst
> > +++ b/doc/guides/rel_notes/release_20_08.rst
> > @@ -171,6 +171,16 @@ New Features
> >  
> >    * Added support for DCF datapath configuration.
> >    * Added support for more PPPoE packet type for switch filter.
> > +  * Added RSS support for IPv6 32bit, 48bit, 64bit prefix.
> > +  * Added RSS support for GTPU, LT2P, ESP, AH, PFCP and PPPoE.
> 
> Should be L2TP, not LT2P :-)
> 
> > +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> > +
> > + * **Updated Intel iavf driver.**
> > +
> > +  Updated iavf PMD with new features and improvements, including:
> > +
> > +  * Added support for FDIR filter by GTPU outer IPv4 and IPv6.
> > +  * Added IPv6 RSS support for GTPU.

Applied with above fix.



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

end of thread, other threads:[~2020-08-06 23:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-06  5:48 [dpdk-dev] [PATCH] doc: update release notes for ice and iavf Qi Zhang
2020-08-06  8:00 ` Thomas Monjalon
2020-08-06 11:09 ` [dpdk-dev] [PATCH v2] " Qi Zhang
2020-08-06 13:57   ` Kinsella, Ray
2020-08-06 23:19     ` 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).