DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/mlx5: add TCP and IPv6 to supported flow items list in Windows
@ 2021-06-01 12:49 Tal Shnaiderman
  2021-06-17 16:07 ` [dpdk-dev] [PATCH v2 0/2] Add types to supported flow items " Tal Shnaiderman
  0 siblings, 1 reply; 7+ messages in thread
From: Tal Shnaiderman @ 2021-06-01 12:49 UTC (permalink / raw)
  To: dev; +Cc: thomas, matan, rasland, asafp, odia

WINOF2 2.70 Windows kernel driver allows DevX rule creation
of types TCP and IPv6.

Added the types to the supported items in mlx5_flow_os_item_supported
to allow them to be created in the PMD.

Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
---
 drivers/net/mlx5/windows/mlx5_flow_os.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/mlx5/windows/mlx5_flow_os.h b/drivers/net/mlx5/windows/mlx5_flow_os.h
index 26c3e59789..df92f25ce6 100644
--- a/drivers/net/mlx5/windows/mlx5_flow_os.h
+++ b/drivers/net/mlx5/windows/mlx5_flow_os.h
@@ -42,6 +42,8 @@ mlx5_flow_os_item_supported(int item)
 	case RTE_FLOW_ITEM_TYPE_ETH:
 	case RTE_FLOW_ITEM_TYPE_IPV4:
 	case RTE_FLOW_ITEM_TYPE_UDP:
+	case RTE_FLOW_ITEM_TYPE_TCP:
+	case RTE_FLOW_ITEM_TYPE_IPV6:
 		return true;
 	default:
 		return false;
-- 
2.16.1.windows.4


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

* [dpdk-dev] [PATCH v2 0/2] Add types to supported flow items in Windows
  2021-06-01 12:49 [dpdk-dev] [PATCH] net/mlx5: add TCP and IPv6 to supported flow items list in Windows Tal Shnaiderman
@ 2021-06-17 16:07 ` Tal Shnaiderman
  2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 1/2] net/mlx5: add TCP and IPv6 to supported flow items list " Tal Shnaiderman
  2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 2/2] doc: description of new steering rules support " Tal Shnaiderman
  0 siblings, 2 replies; 7+ messages in thread
From: Tal Shnaiderman @ 2021-06-17 16:07 UTC (permalink / raw)
  To: dev; +Cc: thomas, matan, rasland, asafp, odia

---
v2: Added a docu patch.
---

Tal Shnaiderman (2):
  net/mlx5: add TCP and IPv6 to supported flow items list in Windows
  doc: description of new steering rules support in Windows

 doc/guides/nics/mlx5.rst                | 3 +++
 drivers/net/mlx5/windows/mlx5_flow_os.h | 2 ++
 2 files changed, 5 insertions(+)

-- 
2.16.1.windows.4


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

* [dpdk-dev] [PATCH v2 1/2] net/mlx5: add TCP and IPv6 to supported flow items list in Windows
  2021-06-17 16:07 ` [dpdk-dev] [PATCH v2 0/2] Add types to supported flow items " Tal Shnaiderman
@ 2021-06-17 16:07   ` Tal Shnaiderman
  2021-06-22 15:34     ` [dpdk-dev] [PATCH v3] " Tal Shnaiderman
  2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 2/2] doc: description of new steering rules support " Tal Shnaiderman
  1 sibling, 1 reply; 7+ messages in thread
From: Tal Shnaiderman @ 2021-06-17 16:07 UTC (permalink / raw)
  To: dev; +Cc: thomas, matan, rasland, asafp, odia

WINOF2 2.70 Windows kernel driver allows DevX rule creation
of types TCP and IPv6.

Added the types to the supported items in mlx5_flow_os_item_supported
to allow them to be created in the PMD.

---
v2: Added a docu patch.
---

Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
---
 drivers/net/mlx5/windows/mlx5_flow_os.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/mlx5/windows/mlx5_flow_os.h b/drivers/net/mlx5/windows/mlx5_flow_os.h
index 26c3e59789..df92f25ce6 100644
--- a/drivers/net/mlx5/windows/mlx5_flow_os.h
+++ b/drivers/net/mlx5/windows/mlx5_flow_os.h
@@ -42,6 +42,8 @@ mlx5_flow_os_item_supported(int item)
 	case RTE_FLOW_ITEM_TYPE_ETH:
 	case RTE_FLOW_ITEM_TYPE_IPV4:
 	case RTE_FLOW_ITEM_TYPE_UDP:
+	case RTE_FLOW_ITEM_TYPE_TCP:
+	case RTE_FLOW_ITEM_TYPE_IPV6:
 		return true;
 	default:
 		return false;
-- 
2.16.1.windows.4


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

* [dpdk-dev] [PATCH v2 2/2] doc: description of new steering rules support in Windows
  2021-06-17 16:07 ` [dpdk-dev] [PATCH v2 0/2] Add types to supported flow items " Tal Shnaiderman
  2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 1/2] net/mlx5: add TCP and IPv6 to supported flow items list " Tal Shnaiderman
@ 2021-06-17 16:07   ` Tal Shnaiderman
  1 sibling, 0 replies; 7+ messages in thread
From: Tal Shnaiderman @ 2021-06-17 16:07 UTC (permalink / raw)
  To: dev; +Cc: thomas, matan, rasland, asafp, odia

Added description of new rules support in Windows
kernel driver WINOF2 2.70

Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
---
 doc/guides/nics/mlx5.rst | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst
index 83299646dd..eb44a070b1 100644
--- a/doc/guides/nics/mlx5.rst
+++ b/doc/guides/nics/mlx5.rst
@@ -123,6 +123,9 @@ Limitations
 
     - IPv4/UDP with CVLAN filtering
     - Unicast MAC filtering
+  - Additional rules are supported from WinOF2 version 2.70:
+    - IPv4/TCP with CVLAN filtering
+    - L4 steering rules for port RSS of UDP, TCP and IP
 
 - For secondary process:
 
-- 
2.16.1.windows.4


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

* [dpdk-dev] [PATCH v3] net/mlx5: add TCP and IPv6 to supported flow items list in Windows
  2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 1/2] net/mlx5: add TCP and IPv6 to supported flow items list " Tal Shnaiderman
@ 2021-06-22 15:34     ` Tal Shnaiderman
  2021-06-23 11:56       ` Matan Azrad
  2021-06-28  8:32       ` Raslan Darawsheh
  0 siblings, 2 replies; 7+ messages in thread
From: Tal Shnaiderman @ 2021-06-22 15:34 UTC (permalink / raw)
  To: dev; +Cc: thomas, matan, rasland, asafp, odia

WINOF2 2.70 Windows kernel driver allows DevX rule creation
of types TCP and IPv6.

Added the types to the supported items in mlx5_flow_os_item_supported
to allow them to be created in the PMD.

Added description of new rules support in Windows kernel driver WINOF2 2.70
to the mlx5 driver guide.

Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>

---
v3 merge code and docu changes to a single patch.
---
---
 doc/guides/nics/mlx5.rst                | 3 +++
 drivers/net/mlx5/windows/mlx5_flow_os.h | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst
index 83299646dd..eb44a070b1 100644
--- a/doc/guides/nics/mlx5.rst
+++ b/doc/guides/nics/mlx5.rst
@@ -123,6 +123,9 @@ Limitations
 
     - IPv4/UDP with CVLAN filtering
     - Unicast MAC filtering
+  - Additional rules are supported from WinOF2 version 2.70:
+    - IPv4/TCP with CVLAN filtering
+    - L4 steering rules for port RSS of UDP, TCP and IP
 
 - For secondary process:
 
diff --git a/drivers/net/mlx5/windows/mlx5_flow_os.h b/drivers/net/mlx5/windows/mlx5_flow_os.h
index 26c3e59789..df92f25ce6 100644
--- a/drivers/net/mlx5/windows/mlx5_flow_os.h
+++ b/drivers/net/mlx5/windows/mlx5_flow_os.h
@@ -42,6 +42,8 @@ mlx5_flow_os_item_supported(int item)
 	case RTE_FLOW_ITEM_TYPE_ETH:
 	case RTE_FLOW_ITEM_TYPE_IPV4:
 	case RTE_FLOW_ITEM_TYPE_UDP:
+	case RTE_FLOW_ITEM_TYPE_TCP:
+	case RTE_FLOW_ITEM_TYPE_IPV6:
 		return true;
 	default:
 		return false;
-- 
2.16.1.windows.4


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

* Re: [dpdk-dev] [PATCH v3] net/mlx5: add TCP and IPv6 to supported flow items list in Windows
  2021-06-22 15:34     ` [dpdk-dev] [PATCH v3] " Tal Shnaiderman
@ 2021-06-23 11:56       ` Matan Azrad
  2021-06-28  8:32       ` Raslan Darawsheh
  1 sibling, 0 replies; 7+ messages in thread
From: Matan Azrad @ 2021-06-23 11:56 UTC (permalink / raw)
  To: Tal Shnaiderman, dev
  Cc: NBU-Contact-Thomas Monjalon, Raslan Darawsheh, Asaf Penso, Odi Assli



From: Tal Shnaiderman
> WINOF2 2.70 Windows kernel driver allows DevX rule creation of types TCP
> and IPv6.
> 
> Added the types to the supported items in mlx5_flow_os_item_supported
> to allow them to be created in the PMD.
> 
> Added description of new rules support in Windows kernel driver WINOF2
> 2.70 to the mlx5 driver guide.
> 
> Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>

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

* Re: [dpdk-dev] [PATCH v3] net/mlx5: add TCP and IPv6 to supported flow items list in Windows
  2021-06-22 15:34     ` [dpdk-dev] [PATCH v3] " Tal Shnaiderman
  2021-06-23 11:56       ` Matan Azrad
@ 2021-06-28  8:32       ` Raslan Darawsheh
  1 sibling, 0 replies; 7+ messages in thread
From: Raslan Darawsheh @ 2021-06-28  8:32 UTC (permalink / raw)
  To: Tal Shnaiderman, dev
  Cc: NBU-Contact-Thomas Monjalon, Matan Azrad, Asaf Penso, Odi Assli

Hi,

> -----Original Message-----
> From: Tal Shnaiderman <talshn@nvidia.com>
> Sent: Tuesday, June 22, 2021 6:35 PM
> To: dev@dpdk.org
> Cc: NBU-Contact-Thomas Monjalon <thomas@monjalon.net>; Matan Azrad
> <matan@nvidia.com>; Raslan Darawsheh <rasland@nvidia.com>; Asaf Penso
> <asafp@nvidia.com>; Odi Assli <odia@nvidia.com>
> Subject: [PATCH v3] net/mlx5: add TCP and IPv6 to supported flow items list
> in Windows
Title too long:
Changing to : 
net/mlx5: add TCP and IPv6 to supported items in Windows
> 
> WINOF2 2.70 Windows kernel driver allows DevX rule creation of types TCP
> and IPv6.
> 
> Added the types to the supported items in mlx5_flow_os_item_supported
> to allow them to be created in the PMD.
> 
> Added description of new rules support in Windows kernel driver WINOF2
> 2.70 to the mlx5 driver guide.
> 
> Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
> 
> ---
> v3 merge code and docu changes to a single patch.
> ---
> ---
>  doc/guides/nics/mlx5.rst                | 3 +++
>  drivers/net/mlx5/windows/mlx5_flow_os.h | 2 ++
>  2 files changed, 5 insertions(+)

Patch applied to next-net-mlx,

Kindest regards,
Raslan Darawsheh

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

end of thread, other threads:[~2021-06-28  8:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-01 12:49 [dpdk-dev] [PATCH] net/mlx5: add TCP and IPv6 to supported flow items list in Windows Tal Shnaiderman
2021-06-17 16:07 ` [dpdk-dev] [PATCH v2 0/2] Add types to supported flow items " Tal Shnaiderman
2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 1/2] net/mlx5: add TCP and IPv6 to supported flow items list " Tal Shnaiderman
2021-06-22 15:34     ` [dpdk-dev] [PATCH v3] " Tal Shnaiderman
2021-06-23 11:56       ` Matan Azrad
2021-06-28  8:32       ` Raslan Darawsheh
2021-06-17 16:07   ` [dpdk-dev] [PATCH v2 2/2] doc: description of new steering rules support " Tal Shnaiderman

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).