DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v1 0/2] extend RSS offload types
@ 2020-11-16  5:32 Simei Su
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI " Simei Su
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Simei Su @ 2020-11-16  5:32 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

[PATCH v1 1/2] ethdev: add RSS offload types.
[PATCH v1 2/2] app/testpmd: add cmdline support for RSS types.

Simei Su (2):
  ethdev: add eCPRI RSS offload types
  app/testpmd: support extended RSS offload types

 app/test-pmd/cmdline.c         | 9 ++++++---
 app/test-pmd/config.c          | 3 ++-
 lib/librte_ethdev/rte_ethdev.h | 1 +
 3 files changed, 9 insertions(+), 4 deletions(-)

-- 
2.9.5


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

* [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI RSS offload types
  2020-11-16  5:32 [dpdk-dev] [PATCH v1 0/2] extend RSS offload types Simei Su
@ 2020-11-16  5:32 ` Simei Su
  2020-11-17 13:06   ` Ferruh Yigit
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended " Simei Su
  2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
  2 siblings, 1 reply; 10+ messages in thread
From: Simei Su @ 2020-11-16  5:32 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

This patch defines new RSS offload types for eCPRI. For eCPRI with
Message Type 0, the hash field is physical channel ID.

Signed-off-by: Simei Su <simei.su@intel.com>
---
 lib/librte_ethdev/rte_ethdev.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h
index 69fc973..f5f8919 100644
--- a/lib/librte_ethdev/rte_ethdev.h
+++ b/lib/librte_ethdev/rte_ethdev.h
@@ -525,6 +525,7 @@ struct rte_eth_rss_conf {
 #define ETH_RSS_L2TPV3             (1ULL << 29)
 #define ETH_RSS_PFCP               (1ULL << 30)
 #define ETH_RSS_PPPOE		   (1ULL << 31)
+#define ETH_RSS_ECPRI		   (1ULL << 32)
 
 /*
  * We use the following macros to combine with above ETH_RSS_* for
-- 
2.9.5


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

* [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended RSS offload types
  2020-11-16  5:32 [dpdk-dev] [PATCH v1 0/2] extend RSS offload types Simei Su
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI " Simei Su
@ 2020-11-16  5:32 ` Simei Su
  2020-11-17 13:11   ` Ferruh Yigit
  2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
  2 siblings, 1 reply; 10+ messages in thread
From: Simei Su @ 2020-11-16  5:32 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

This patch adds testpmd cmdline support for eCPRI.

Signed-off-by: Simei Su <simei.su@intel.com>
---
 app/test-pmd/cmdline.c | 9 ++++++---
 app/test-pmd/config.c  | 3 ++-
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index 5e2881e..e5f3462 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -2164,7 +2164,8 @@ cmd_config_rss_parsed(void *parsed_result,
 		rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
 			ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
 			ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
-			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU;
+			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
+			ETH_RSS_ECPRI;
 	else if (!strcmp(res->value, "eth"))
 		rss_conf.rss_hf = ETH_RSS_ETH;
 	else if (!strcmp(res->value, "vlan"))
@@ -2223,6 +2224,8 @@ cmd_config_rss_parsed(void *parsed_result,
 		rss_conf.rss_hf = ETH_RSS_PPPOE;
 	else if (!strcmp(res->value, "gtpu"))
 		rss_conf.rss_hf = ETH_RSS_GTPU;
+	else if (!strcmp(res->value, "ecpri"))
+		rss_conf.rss_hf = ETH_RSS_ECPRI;
 	else if (!strcmp(res->value, "none"))
 		rss_conf.rss_hf = 0;
 	else if (!strcmp(res->value, "level-default")) {
@@ -2407,7 +2410,7 @@ cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
 				 "ipv6-tcp-ex#ipv6-udp-ex#"
 				 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#"
 				 "l2-src-only#l2-dst-only#s-vlan#c-vlan#"
-				 "l2tpv3#esp#ah#pfcp#pppoe#gtpu");
+				 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri");
 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
 
@@ -2420,7 +2423,7 @@ cmdline_parse_inst_t cmd_config_rss_hash_key = {
 		"l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|"
 		"l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|"
 		"l2-src-only|l2-dst-only|s-vlan|c-vlan|"
-		"l2tpv3|esp|ah|pfcp|pppoe|gtpu "
+		"l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri "
 		"<string of hex digits (variable length, NIC dependent)>",
 	.tokens = {
 		(void *)&cmd_config_rss_hash_key_port,
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 91e7542..b51de59 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -87,7 +87,7 @@ const struct rss_type_info rss_type_table[] = {
 	{ "all", ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | ETH_RSS_TCP |
 		ETH_RSS_UDP | ETH_RSS_SCTP | ETH_RSS_L2_PAYLOAD |
 		ETH_RSS_L2TPV3 | ETH_RSS_ESP | ETH_RSS_AH | ETH_RSS_PFCP |
-		ETH_RSS_GTPU},
+		ETH_RSS_GTPU | ETH_RSS_ECPRI},
 	{ "none", 0 },
 	{ "eth", ETH_RSS_ETH },
 	{ "l2-src-only", ETH_RSS_L2_SRC_ONLY },
@@ -136,6 +136,7 @@ const struct rss_type_info rss_type_table[] = {
 	{ "pfcp", ETH_RSS_PFCP },
 	{ "pppoe", ETH_RSS_PPPOE },
 	{ "gtpu", ETH_RSS_GTPU },
+	{ "ecpri", ETH_RSS_ECPRI },
 	{ NULL, 0 },
 };
 
-- 
2.9.5


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

* Re: [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI RSS offload types
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI " Simei Su
@ 2020-11-17 13:06   ` Ferruh Yigit
  0 siblings, 0 replies; 10+ messages in thread
From: Ferruh Yigit @ 2020-11-17 13:06 UTC (permalink / raw)
  To: Simei Su, qi.z.zhang; +Cc: dev, junfeng.guo, yahui.cao, xiao.zhang

On 11/16/2020 5:32 AM, Simei Su wrote:
> This patch defines new RSS offload types for eCPRI. For eCPRI with
> Message Type 0, the hash field is physical channel ID.
> 
> Signed-off-by: Simei Su <simei.su@intel.com>
> ---
>   lib/librte_ethdev/rte_ethdev.h | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h
> index 69fc973..f5f8919 100644
> --- a/lib/librte_ethdev/rte_ethdev.h
> +++ b/lib/librte_ethdev/rte_ethdev.h
> @@ -525,6 +525,7 @@ struct rte_eth_rss_conf {
>   #define ETH_RSS_L2TPV3             (1ULL << 29)
>   #define ETH_RSS_PFCP               (1ULL << 30)
>   #define ETH_RSS_PPPOE		   (1ULL << 31)
> +#define ETH_RSS_ECPRI		   (1ULL << 32)
>   

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

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

* Re: [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended RSS offload types
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended " Simei Su
@ 2020-11-17 13:11   ` Ferruh Yigit
  0 siblings, 0 replies; 10+ messages in thread
From: Ferruh Yigit @ 2020-11-17 13:11 UTC (permalink / raw)
  To: Simei Su, qi.z.zhang; +Cc: dev, junfeng.guo, yahui.cao, xiao.zhang

On 11/16/2020 5:32 AM, Simei Su wrote:
> This patch adds testpmd cmdline support for eCPRI.
> 
> Signed-off-by: Simei Su <simei.su@intel.com>
> ---
>   app/test-pmd/cmdline.c | 9 ++++++---
>   app/test-pmd/config.c  | 3 ++-
>   2 files changed, 8 insertions(+), 4 deletions(-)
> 
> diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
> index 5e2881e..e5f3462 100644
> --- a/app/test-pmd/cmdline.c
> +++ b/app/test-pmd/cmdline.c
> @@ -2164,7 +2164,8 @@ cmd_config_rss_parsed(void *parsed_result,
>   		rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
>   			ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
>   			ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
> -			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU;
> +			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
> +			ETH_RSS_ECPRI;
>   	else if (!strcmp(res->value, "eth"))
>   		rss_conf.rss_hf = ETH_RSS_ETH;
>   	else if (!strcmp(res->value, "vlan"))
> @@ -2223,6 +2224,8 @@ cmd_config_rss_parsed(void *parsed_result,
>   		rss_conf.rss_hf = ETH_RSS_PPPOE;
>   	else if (!strcmp(res->value, "gtpu"))
>   		rss_conf.rss_hf = ETH_RSS_GTPU;
> +	else if (!strcmp(res->value, "ecpri"))
> +		rss_conf.rss_hf = ETH_RSS_ECPRI;
>   	else if (!strcmp(res->value, "none"))
>   		rss_conf.rss_hf = 0;
>   	else if (!strcmp(res->value, "level-default")) {

Can you please update 'cmd_config_rss.help_str' to add the 'ecpri'?

Also please update 'cmd_help_long_parsed()', "port config all rss ..." cmd to 
add the 'ecpri'.

And please update the documentation 
(doc/guides/testpmd_app_ug/testpmd_funcs.rst), add 'ecpri' to the section "port 
config - RSS"

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

* [dpdk-dev] [PATCH v2 0/2] extend RSS offload types
  2020-11-16  5:32 [dpdk-dev] [PATCH v1 0/2] extend RSS offload types Simei Su
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI " Simei Su
  2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended " Simei Su
@ 2020-11-18  1:34 ` Simei Su
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 1/2] ethdev: add eCPRI " Simei Su
                     ` (2 more replies)
  2 siblings, 3 replies; 10+ messages in thread
From: Simei Su @ 2020-11-18  1:34 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

[PATCH v2 1/2] ethdev: add RSS offload types.
[PATCH v2 2/2] app/testpmd: add cmdline support for RSS types.

v2:
* Update cmd_config_rss.help_str and cmd_help_long_parsed() to add the ecpri.
* Update the documentation to add the ecpri.

Simei Su (2):
  ethdev: add eCPRI RSS offload types
  app/testpmd: support extended RSS offload types

 app/test-pmd/cmdline.c                      | 13 ++++++++-----
 app/test-pmd/config.c                       |  3 ++-
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |  2 +-
 lib/librte_ethdev/rte_ethdev.h              |  1 +
 4 files changed, 12 insertions(+), 7 deletions(-)

-- 
2.9.5


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

* [dpdk-dev] [PATCH v2 1/2] ethdev: add eCPRI RSS offload types
  2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
@ 2020-11-18  1:34   ` Simei Su
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended " Simei Su
  2020-11-18 12:56   ` [dpdk-dev] [PATCH v2 0/2] extend " Ferruh Yigit
  2 siblings, 0 replies; 10+ messages in thread
From: Simei Su @ 2020-11-18  1:34 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

This patch defines new RSS offload types for eCPRI. For eCPRI with
Message Type 0, the hash field is physical channel ID.

Signed-off-by: Simei Su <simei.su@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 lib/librte_ethdev/rte_ethdev.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h
index 69fc973..f5f8919 100644
--- a/lib/librte_ethdev/rte_ethdev.h
+++ b/lib/librte_ethdev/rte_ethdev.h
@@ -525,6 +525,7 @@ struct rte_eth_rss_conf {
 #define ETH_RSS_L2TPV3             (1ULL << 29)
 #define ETH_RSS_PFCP               (1ULL << 30)
 #define ETH_RSS_PPPOE		   (1ULL << 31)
+#define ETH_RSS_ECPRI		   (1ULL << 32)
 
 /*
  * We use the following macros to combine with above ETH_RSS_* for
-- 
2.9.5


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

* [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended RSS offload types
  2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 1/2] ethdev: add eCPRI " Simei Su
@ 2020-11-18  1:34   ` Simei Su
  2020-11-18 12:55     ` Ferruh Yigit
  2020-11-18 12:56   ` [dpdk-dev] [PATCH v2 0/2] extend " Ferruh Yigit
  2 siblings, 1 reply; 10+ messages in thread
From: Simei Su @ 2020-11-18  1:34 UTC (permalink / raw)
  To: ferruh.yigit, qi.z.zhang
  Cc: dev, junfeng.guo, yahui.cao, xiao.zhang, Simei Su

This patch adds testpmd cmdline support for eCPRI.

Signed-off-by: Simei Su <simei.su@intel.com>
---
 app/test-pmd/cmdline.c                      | 13 ++++++++-----
 app/test-pmd/config.c                       |  3 ++-
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |  2 +-
 3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index 5e2881e..bde0de5 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -788,7 +788,7 @@ static void cmd_help_long_parsed(void *parsed_result,
 			"receive buffers available.\n\n"
 
 			"port config all rss (all|default|ip|tcp|udp|sctp|"
-			"ether|port|vxlan|geneve|nvgre|vxlan-gpe|none|level-default|"
+			"ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|none|level-default|"
 			"level-outer|level-inner|<flowtype_id>)\n"
 			"    Set the RSS mode.\n\n"
 
@@ -2164,7 +2164,8 @@ cmd_config_rss_parsed(void *parsed_result,
 		rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
 			ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
 			ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
-			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU;
+			ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
+			ETH_RSS_ECPRI;
 	else if (!strcmp(res->value, "eth"))
 		rss_conf.rss_hf = ETH_RSS_ETH;
 	else if (!strcmp(res->value, "vlan"))
@@ -2223,6 +2224,8 @@ cmd_config_rss_parsed(void *parsed_result,
 		rss_conf.rss_hf = ETH_RSS_PPPOE;
 	else if (!strcmp(res->value, "gtpu"))
 		rss_conf.rss_hf = ETH_RSS_GTPU;
+	else if (!strcmp(res->value, "ecpri"))
+		rss_conf.rss_hf = ETH_RSS_ECPRI;
 	else if (!strcmp(res->value, "none"))
 		rss_conf.rss_hf = 0;
 	else if (!strcmp(res->value, "level-default")) {
@@ -2293,7 +2296,7 @@ cmdline_parse_inst_t cmd_config_rss = {
 	.data = NULL,
 	.help_str = "port config all rss "
 		"all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|"
-		"nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|none|level-default|"
+		"nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|none|level-default|"
 		"level-outer|level-inner|<flowtype_id>",
 	.tokens = {
 		(void *)&cmd_config_rss_port,
@@ -2407,7 +2410,7 @@ cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
 				 "ipv6-tcp-ex#ipv6-udp-ex#"
 				 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#"
 				 "l2-src-only#l2-dst-only#s-vlan#c-vlan#"
-				 "l2tpv3#esp#ah#pfcp#pppoe#gtpu");
+				 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri");
 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
 
@@ -2420,7 +2423,7 @@ cmdline_parse_inst_t cmd_config_rss_hash_key = {
 		"l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|"
 		"l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|"
 		"l2-src-only|l2-dst-only|s-vlan|c-vlan|"
-		"l2tpv3|esp|ah|pfcp|pppoe|gtpu "
+		"l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri "
 		"<string of hex digits (variable length, NIC dependent)>",
 	.tokens = {
 		(void *)&cmd_config_rss_hash_key_port,
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 91e7542..b51de59 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -87,7 +87,7 @@ const struct rss_type_info rss_type_table[] = {
 	{ "all", ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | ETH_RSS_TCP |
 		ETH_RSS_UDP | ETH_RSS_SCTP | ETH_RSS_L2_PAYLOAD |
 		ETH_RSS_L2TPV3 | ETH_RSS_ESP | ETH_RSS_AH | ETH_RSS_PFCP |
-		ETH_RSS_GTPU},
+		ETH_RSS_GTPU | ETH_RSS_ECPRI},
 	{ "none", 0 },
 	{ "eth", ETH_RSS_ETH },
 	{ "l2-src-only", ETH_RSS_L2_SRC_ONLY },
@@ -136,6 +136,7 @@ const struct rss_type_info rss_type_table[] = {
 	{ "pfcp", ETH_RSS_PFCP },
 	{ "pppoe", ETH_RSS_PPPOE },
 	{ "gtpu", ETH_RSS_GTPU },
+	{ "ecpri", ETH_RSS_ECPRI },
 	{ NULL, 0 },
 };
 
diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
index ebf7e68..9be4500 100644
--- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
+++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
@@ -2270,7 +2270,7 @@ port config - RSS
 
 Set the RSS (Receive Side Scaling) mode on or off::
 
-   testpmd> port config all rss (all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|none)
+   testpmd> port config all rss (all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|none)
 
 RSS is on by default.
 
-- 
2.9.5


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

* Re: [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended RSS offload types
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended " Simei Su
@ 2020-11-18 12:55     ` Ferruh Yigit
  0 siblings, 0 replies; 10+ messages in thread
From: Ferruh Yigit @ 2020-11-18 12:55 UTC (permalink / raw)
  To: Simei Su, qi.z.zhang; +Cc: dev, junfeng.guo, yahui.cao, xiao.zhang

On 11/18/2020 1:34 AM, Simei Su wrote:
> This patch adds testpmd cmdline support for eCPRI.
> 
> Signed-off-by: Simei Su <simei.su@intel.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>


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

* Re: [dpdk-dev] [PATCH v2 0/2] extend RSS offload types
  2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 1/2] ethdev: add eCPRI " Simei Su
  2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended " Simei Su
@ 2020-11-18 12:56   ` Ferruh Yigit
  2 siblings, 0 replies; 10+ messages in thread
From: Ferruh Yigit @ 2020-11-18 12:56 UTC (permalink / raw)
  To: Simei Su, qi.z.zhang; +Cc: dev, junfeng.guo, yahui.cao, xiao.zhang

On 11/18/2020 1:34 AM, Simei Su wrote:
> [PATCH v2 1/2] ethdev: add RSS offload types.
> [PATCH v2 2/2] app/testpmd: add cmdline support for RSS types.
> 
> v2:
> * Update cmd_config_rss.help_str and cmd_help_long_parsed() to add the ecpri.
> * Update the documentation to add the ecpri.
> 
> Simei Su (2):
>    ethdev: add eCPRI RSS offload types
>    app/testpmd: support extended RSS offload types
> 

Series applied to dpdk-next-net/main, thanks.


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

end of thread, other threads:[~2020-11-18 12:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-16  5:32 [dpdk-dev] [PATCH v1 0/2] extend RSS offload types Simei Su
2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI " Simei Su
2020-11-17 13:06   ` Ferruh Yigit
2020-11-16  5:32 ` [dpdk-dev] [PATCH v1 2/2] app/testpmd: support extended " Simei Su
2020-11-17 13:11   ` Ferruh Yigit
2020-11-18  1:34 ` [dpdk-dev] [PATCH v2 0/2] extend " Simei Su
2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 1/2] ethdev: add eCPRI " Simei Su
2020-11-18  1:34   ` [dpdk-dev] [PATCH v2 2/2] app/testpmd: support extended " Simei Su
2020-11-18 12:55     ` Ferruh Yigit
2020-11-18 12:56   ` [dpdk-dev] [PATCH v2 0/2] extend " Ferruh Yigit

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