Tested-by: Xie,WeiX < weix....@intel.com> Regards, Xie Wei
> -----Original Message----- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Junyu Jiang > Sent: Tuesday, October 20, 2020 4:51 PM > To: dev@dpdk.org > Cc: Yang, Qiming <qiming.y...@intel.com>; Su, Simei <simei...@intel.com>; > Jiang, JunyuX <junyux.ji...@intel.com>; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/ice: fix SCTP RSS configuration > > This patch configured RSS for sctp with IP address and port as input set. > > Fixes: 4717a12cfaf1 ("net/ice: initialize and update RSS based on user > config") > Cc: sta...@dpdk.org > > Signed-off-by: Junyu Jiang <junyux.ji...@intel.com> > --- > drivers/net/ice/ice_ethdev.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c > index 0056da78a..63138d3b9 100644 > --- a/drivers/net/ice/ice_ethdev.c > +++ b/drivers/net/ice/ice_ethdev.c > @@ -2987,7 +2987,7 @@ ice_rss_hash_set(struct ice_pf *pf, uint64_t rss_hf) > > /* Configure RSS for sctp4 with src/dst addr and port as input set */ > if (rss_hf & ETH_RSS_NONFRAG_IPV4_SCTP) { > - ret = ice_add_rss_cfg_wrap(pf, vsi->idx, > ICE_FLOW_HASH_IPV4, > + ret = ice_add_rss_cfg_wrap(pf, vsi->idx, > ICE_HASH_SCTP_IPV4, > ICE_FLOW_SEG_HDR_SCTP | > ICE_FLOW_SEG_HDR_IPV4 | > ICE_FLOW_SEG_HDR_IPV_OTHER, 0); @@ > -2998,7 +2998,7 @@ ice_rss_hash_set(struct ice_pf *pf, uint64_t rss_hf) > > /* Configure RSS for sctp6 with src/dst addr and port as input set */ > if (rss_hf & ETH_RSS_NONFRAG_IPV6_SCTP) { > - ret = ice_add_rss_cfg_wrap(pf, vsi->idx, > ICE_FLOW_HASH_IPV6, > + ret = ice_add_rss_cfg_wrap(pf, vsi->idx, > ICE_HASH_SCTP_IPV6, > ICE_FLOW_SEG_HDR_SCTP | > ICE_FLOW_SEG_HDR_IPV6 | > ICE_FLOW_SEG_HDR_IPV_OTHER, 0); > -- > 2.17.1