[v1] net/ice: fix ipv6 nat-t esp issue
Checks
Commit Message
The hash for ipv6 nat-t esp should be enable as ipv4 nat-t esp.
Fixes: dadf70e5c30a (net/ice: enable additional input set for RSS hash)
Signed-off-by: Jeff Guo <jia.guo@intel.com>
---
drivers/net/ice/ice_hash.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Comments
> -----Original Message-----
> From: Guo, Jia <jia.guo@intel.com>
> Sent: Thursday, July 16, 2020 3:29 PM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Yang, Qiming <qiming.yang@intel.com>
> Cc: dev@dpdk.org; Su, Simei <simei.su@intel.com>; Guo, Jia
> <jia.guo@intel.com>
> Subject: [dpdk-dev v1] net/ice: fix ipv6 nat-t esp issue
>
> The hash for ipv6 nat-t esp should be enable as ipv4 nat-t esp.
>
> Fixes: dadf70e5c30a (net/ice: enable additional input set for RSS hash)
>
> Signed-off-by: Jeff Guo <jia.guo@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
Applied to dpdk-next-net-intel.
Thanks
Qi
@@ -1102,7 +1102,8 @@ ice_hash_parse_action(struct ice_pattern_match_item *pattern_match_item,
/* update hash field for nat-t esp. */
if (rss_type == ETH_RSS_ESP &&
- (m->eth_rss_hint & ETH_RSS_NONFRAG_IPV4_UDP)) {
+ (m->eth_rss_hint & ETH_RSS_NONFRAG_IPV4_UDP ||
+ m->eth_rss_hint & ETH_RSS_NONFRAG_IPV6_UDP)) {
hash_meta->hash_flds &=
~(BIT_ULL(ICE_FLOW_FIELD_IDX_ESP_SPI));
hash_meta->hash_flds |=