mbox series

[v4,0/3] add RSS support for IPv6 prefix

Message ID 20200708073341.546583-1-junfeng.guo@intel.com (mailing list archive)
Headers
Series add RSS support for IPv6 prefix |

Message

Junfeng Guo July 8, 2020, 7:33 a.m. UTC
  RSS for IPv6 prefix fields are supported in this patch, so that we
can use prefixes instead of full IPv6 address for RSS. These prefixes
include the first 32, 48, 64 bits of both SRC and DST IPv6 address.
This feature is mainly for NAT64 scenarios.

v4:
* Code rebase.

v3:
* Code rebase.

v2:
* Split previous patch into 3 independent ones to be more clear.

[PATCH v4 1/3] ethdev: add new RSS types for IPv6 prefix
[PATCH v4 2/3] app/testpmd: support extended RSS offload types
[PATCH v4 3/3] net/ice: add RSS support for IPv6 prefix

Junfeng Guo (3):
  ethdev: add new RSS types for IPv6 prefix
  app/testpmd: support extended RSS offload types
  net/ice: add RSS support for IPv6 prefix

 app/test-pmd/cmdline.c         |   6 +
 app/test-pmd/config.c          |   3 +
 drivers/net/ice/ice_hash.c     | 207 +++++++++++++++++++++++++++++++++
 lib/librte_ethdev/rte_ethdev.h |  51 ++++++++
 4 files changed, 267 insertions(+)
  

Comments

Qi Zhang July 8, 2020, 8:24 a.m. UTC | #1
> -----Original Message-----
> From: Guo, Junfeng <junfeng.guo@intel.com>
> Sent: Wednesday, July 8, 2020 3:34 PM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Ye, Xiaolong
> <xiaolong.ye@intel.com>; Xing, Beilei <beilei.xing@intel.com>; Yigit, Ferruh
> <ferruh.yigit@intel.com>
> Cc: dev@dpdk.org; Guo, Jia <jia.guo@intel.com>; Guo, Junfeng
> <junfeng.guo@intel.com>; Su, Simei <simei.su@intel.com>
> Subject: [PATCH v4 0/3] add RSS support for IPv6 prefix
> 
> RSS for IPv6 prefix fields are supported in this patch, so that we can use
> prefixes instead of full IPv6 address for RSS. These prefixes include the first
> 32, 48, 64 bits of both SRC and DST IPv6 address.
> This feature is mainly for NAT64 scenarios.
> 
> v4:
> * Code rebase.
> 
> v3:
> * Code rebase.
> 
> v2:
> * Split previous patch into 3 independent ones to be more clear.
> 
> [PATCH v4 1/3] ethdev: add new RSS types for IPv6 prefix [PATCH v4 2/3]
> app/testpmd: support extended RSS offload types [PATCH v4 3/3] net/ice:
> add RSS support for IPv6 prefix
> 
> Junfeng Guo (3):
>   ethdev: add new RSS types for IPv6 prefix
>   app/testpmd: support extended RSS offload types
>   net/ice: add RSS support for IPv6 prefix
> 
>  app/test-pmd/cmdline.c         |   6 +
>  app/test-pmd/config.c          |   3 +
>  drivers/net/ice/ice_hash.c     | 207
> +++++++++++++++++++++++++++++++++
>  lib/librte_ethdev/rte_ethdev.h |  51 ++++++++
>  4 files changed, 267 insertions(+)
> 
> --
> 2.25.1

Acked-by: Qi Zhang <qi.z.zhang@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi