[dpdk-stable] [dpdk-dev] [PATCH] net/ice: fix SCTP RSS configuration

Xie, WeiX weix.xie at intel.com
Fri Oct 23 10:04:51 CEST 2020


Tested-by:  Xie,WeiX < weix.xie at intel.com>

Regards,
Xie Wei

> -----Original Message-----
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Junyu Jiang
> Sent: Tuesday, October 20, 2020 4:51 PM
> To: dev at dpdk.org
> Cc: Yang, Qiming <qiming.yang at intel.com>; Su, Simei <simei.su at intel.com>;
> Jiang, JunyuX <junyux.jiang at intel.com>; stable at 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: stable at dpdk.org
> 
> Signed-off-by: Junyu Jiang <junyux.jiang at 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



More information about the stable mailing list