DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: add DSCP rewrite action to 20.02 release notes
@ 2020-02-24 12:05 Suanming Mou
  2020-02-24 12:18 ` [dpdk-dev] [PATCH v2] " Suanming Mou
  0 siblings, 1 reply; 4+ messages in thread
From: Suanming Mou @ 2020-02-24 12:05 UTC (permalink / raw)
  To: John McNamara, Marko Kovacevic; +Cc: dev

Add the actions RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP support to the
release note.

Signed-off-by: Suanming Mou <suanmingm@mellanox.com>
---
 doc/guides/rel_notes/release_20_02.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_20_02.rst
index dfebc46..4da0010 100644
--- a/doc/guides/rel_notes/release_20_02.rst
+++ b/doc/guides/rel_notes/release_20_02.rst
@@ -235,6 +235,11 @@ New Features
   Added document describes how to enable DPDK on OpenWrt in both virtual and
   physical machine.
 
+* **Added DSCP rewrite action.**
+
+  New actions ``RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP`` have been added
+  to support rewrite the DSCP field in the IP header. 
+
 
 Removed Items
 -------------
-- 
1.8.3.1


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

* [dpdk-dev] [PATCH v2] doc: add DSCP rewrite action to 20.02 release notes
  2020-02-24 12:05 [dpdk-dev] [PATCH] doc: add DSCP rewrite action to 20.02 release notes Suanming Mou
@ 2020-02-24 12:18 ` Suanming Mou
  2020-02-24 19:50   ` [dpdk-dev] [PATCH v3] doc: add IP DSCP rewrite to mlx5 and " Thomas Monjalon
  0 siblings, 1 reply; 4+ messages in thread
From: Suanming Mou @ 2020-02-24 12:18 UTC (permalink / raw)
  To: john.mcnamara, marko.kovacevic; +Cc: dev

Add the actions RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP support to the
release note.

Signed-off-by: Suanming Mou <suanmingm@mellanox.com>
---

v2: fix coding style issue.

---
 doc/guides/rel_notes/release_20_02.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_20_02.rst
index dfebc46..2e617cc 100644
--- a/doc/guides/rel_notes/release_20_02.rst
+++ b/doc/guides/rel_notes/release_20_02.rst
@@ -235,6 +235,11 @@ New Features
   Added document describes how to enable DPDK on OpenWrt in both virtual and
   physical machine.
 
+* **Added DSCP rewrite action.**
+
+  New actions ``RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP`` have been added
+  to support rewrite the DSCP field in the IP header.
+
 
 Removed Items
 -------------
-- 
1.8.3.1


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

* [dpdk-dev] [PATCH v3] doc: add IP DSCP rewrite to mlx5 and release notes
  2020-02-24 12:18 ` [dpdk-dev] [PATCH v2] " Suanming Mou
@ 2020-02-24 19:50   ` Thomas Monjalon
  2020-02-25 11:22     ` Thomas Monjalon
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2020-02-24 19:50 UTC (permalink / raw)
  To: dev
  Cc: Suanming Mou, Matan Azrad, Shahaf Shuler, Viacheslav Ovsiienko,
	John McNamara, Marko Kovacevic, Ori Kam, Andrew Rybchenko

The new rte_flow feature for DSCP field rewrite offload was
missing in the release notes.

The mlx5 requirements for DSCP field rewrite offload were missing.

Fixes: 8482ffe4b68b ("ethdev: add IPv4/IPv6 DSCP rewrite action")
Fixes: 6f26e604a9c3 ("net/mlx5: support IPv4/IPv6 DSCP rewrite action")

Signed-off-by: Suanming Mou <suanmingm@mellanox.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 doc/guides/nics/mlx5.rst               | 5 +++++
 doc/guides/rel_notes/release_20_02.rst | 6 ++++++
 2 files changed, 11 insertions(+)

diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst
index 2af359ccee..e67bba90cb 100644
--- a/doc/guides/nics/mlx5.rst
+++ b/doc/guides/nics/mlx5.rst
@@ -1184,6 +1184,11 @@ Supported hardware offloads
    | | set_mac_src /       | |               | |               |
    | | set_mac_dst)        | |               | |               |
    +-----------------------+-----------------+-----------------+
+   | | Header rewrite      | | DPDK 20.02    | | DPDK 20.02    |
+   | | (set_dscp)          | | OFED 5.0      | | OFED 5.0      |
+   | |                     | | rdma-core 24  | | rdma-core 24  |
+   | |                     | | ConnectX-5    | | ConnectX-5    |
+   +-----------------------+-----------------+-----------------+
    | Jump                  | | DPDK 19.05    | | DPDK 19.02    |
    |                       | | OFED 4.7-1    | | OFED 4.7-1    |
    |                       | | rdma-core 24  | | N/A           |
diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_20_02.rst
index dfebc467e0..0c33b342aa 100644
--- a/doc/guides/rel_notes/release_20_02.rst
+++ b/doc/guides/rel_notes/release_20_02.rst
@@ -69,6 +69,11 @@ New Features
 
   Added support for new flow item to handle L2TPv3 over IP rte_flow patterns.
 
+* **Added DSCP rewrite action.**
+
+  New actions ``RTE_FLOW_ACTION_TYPE_SET_IPV[4/6]_DSCP`` have been added
+  to support rewrite the DSCP field in the IP header.
+
 * **Added IONIC net PMD.**
 
   Added the new ``ionic`` net driver for Pensando Ethernet Network Adapters.
@@ -133,6 +138,7 @@ New Features
   * Added support for RSS using L3/L4 source/destination only.
   * Added support for matching on GTP tunnel header item.
   * Removed limitation of matching on tagged/untagged packets (when using DV flow engine).
+  * Added support for IPv4/IPv6 DSCP rewrite action.
   * Added BlueField-2 integrated ConnectX-6 Dx device support.
 
 * **Add new vDPA PMD based on Mellanox devices**
-- 
2.25.0


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

* Re: [dpdk-dev] [PATCH v3] doc: add IP DSCP rewrite to mlx5 and release notes
  2020-02-24 19:50   ` [dpdk-dev] [PATCH v3] doc: add IP DSCP rewrite to mlx5 and " Thomas Monjalon
@ 2020-02-25 11:22     ` Thomas Monjalon
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2020-02-25 11:22 UTC (permalink / raw)
  To: Suanming Mou
  Cc: dev, Matan Azrad, Shahaf Shuler, Viacheslav Ovsiienko,
	John McNamara, Marko Kovacevic, Ori Kam, Andrew Rybchenko

24/02/2020 20:50, Thomas Monjalon:
> The new rte_flow feature for DSCP field rewrite offload was
> missing in the release notes.
> 
> The mlx5 requirements for DSCP field rewrite offload were missing.
> 
> Fixes: 8482ffe4b68b ("ethdev: add IPv4/IPv6 DSCP rewrite action")
> Fixes: 6f26e604a9c3 ("net/mlx5: support IPv4/IPv6 DSCP rewrite action")
> 
> Signed-off-by: Suanming Mou <suanmingm@mellanox.com>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>

Applied




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

end of thread, other threads:[~2020-02-25 11:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-24 12:05 [dpdk-dev] [PATCH] doc: add DSCP rewrite action to 20.02 release notes Suanming Mou
2020-02-24 12:18 ` [dpdk-dev] [PATCH v2] " Suanming Mou
2020-02-24 19:50   ` [dpdk-dev] [PATCH v3] doc: add IP DSCP rewrite to mlx5 and " Thomas Monjalon
2020-02-25 11:22     ` 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).