[dpdk-dev] [PATCH] net/ice: remove RSS for SCTP in PPPoE

Jeff Guo jia.guo at intel.com
Mon Jul 27 04:38:32 CEST 2020


hi, qi

On 7/25/2020 8:58 PM, Qi Zhang wrote:
> We don't support SCTP in PPPoE RSS, remove it.
>
> Fixes: d117de460035 ("net/ice: fix GTPU/PPPoE packets with no hash value")
> Fixes: 0b952714e9c1 ("net/ice: refactor PF hash flow")
>
> Signed-off-by: Qi Zhang <qi.z.zhang at intel.com>
> ---
>   drivers/net/ice/ice_ethdev.c | 12 ------------
>   drivers/net/ice/ice_hash.c   | 14 --------------
>   2 files changed, 26 deletions(-)
>
> diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
> index a4a0390f8..c4c0e638f 100644
> --- a/drivers/net/ice/ice_ethdev.c
> +++ b/drivers/net/ice/ice_ethdev.c
> @@ -2666,12 +2666,6 @@ ice_rss_hash_set(struct ice_pf *pf, uint64_t rss_hf)
>   		if (ret)
>   			PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV4_SCTP rss flow fail %d",
>   				    __func__, ret);
> -
> -		ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_SCTP_IPV4,
> -				ICE_FLOW_SEG_HDR_PPPOE, 0);
> -		if (ret)
> -			PMD_DRV_LOG(ERR, "%s PPPoE_IPV4_SCTP rss flow fail %d",
> -				    __func__, ret);
>   	}
>   
>   	if (rss_hf & ETH_RSS_NONFRAG_IPV6_SCTP) {
> @@ -2686,12 +2680,6 @@ ice_rss_hash_set(struct ice_pf *pf, uint64_t rss_hf)
>   		if (ret)
>   			PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV6_SCTP rss flow fail %d",
>   				    __func__, ret);
> -
> -		ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_SCTP_IPV6,
> -				ICE_FLOW_SEG_HDR_PPPOE, 0);
> -		if (ret)
> -			PMD_DRV_LOG(ERR, "%s PPPoE_IPV6_SCTP rss flow fail %d",
> -				    __func__, ret);
>   	}
>   }
>   
> diff --git a/drivers/net/ice/ice_hash.c b/drivers/net/ice/ice_hash.c
> index e535e4b95..4243f7ce9 100644
> --- a/drivers/net/ice/ice_hash.c
> +++ b/drivers/net/ice/ice_hash.c
> @@ -204,10 +204,6 @@ struct rss_type_match_hdr hint_eth_pppoes_ipv4_tcp = {
>   	ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV4 |
>   	ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_TCP,
>   	ETH_RSS_ETH | ETH_RSS_PPPOE | ETH_RSS_NONFRAG_IPV4_TCP};
> -struct rss_type_match_hdr hint_eth_pppoes_ipv4_sctp = {
> -	ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV4 |
> -	ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_SCTP,
> -	ETH_RSS_ETH | ETH_RSS_PPPOE | ETH_RSS_NONFRAG_IPV4_SCTP};
>   struct rss_type_match_hdr hint_eth_ipv4_esp = {
>   	ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
>   	ICE_FLOW_SEG_HDR_ESP,
> @@ -313,10 +309,6 @@ struct rss_type_match_hdr hint_eth_pppoes_ipv6_tcp = {
>   	ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV6 |
>   	ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_TCP,
>   	ETH_RSS_ETH | ETH_RSS_PPPOE | ETH_RSS_NONFRAG_IPV6_TCP};
> -struct rss_type_match_hdr hint_eth_pppoes_ipv6_sctp = {
> -	ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV6 |
> -	ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_SCTP,
> -	ETH_RSS_ETH | ETH_RSS_PPPOE | ETH_RSS_NONFRAG_IPV6_SCTP};
>   struct rss_type_match_hdr hint_eth_pppoes = {
>   	ICE_FLOW_SEG_HDR_PPPOE,
>   	ETH_RSS_ETH | ETH_RSS_PPPOE};
> @@ -398,10 +390,6 @@ static struct ice_pattern_match_item ice_hash_pattern_list_comms[] = {
>   		&hint_eth_pppoes_ipv4},
>   	{pattern_eth_pppoes_ipv4_udp,	    ICE_INSET_NONE,
>   		&hint_eth_pppoes_ipv4_udp},
> -	{pattern_eth_pppoes_ipv4_tcp,	    ICE_INSET_NONE,
> -		&hint_eth_pppoes_ipv4_tcp},


The tcp should not be removed. Need a new version please.


> -	{pattern_eth_pppoes_ipv4_sctp,	    ICE_INSET_NONE,
> -		&hint_eth_pppoes_ipv4_sctp},
>   	{pattern_eth_ipv4_esp,		    ICE_INSET_NONE,
>   		&hint_eth_ipv4_esp},
>   	{pattern_eth_ipv4_udp_esp,	    ICE_INSET_NONE,
> @@ -452,8 +440,6 @@ static struct ice_pattern_match_item ice_hash_pattern_list_comms[] = {
>   		&hint_eth_pppoes_ipv6_udp},
>   	{pattern_eth_pppoes_ipv6_tcp,	    ICE_INSET_NONE,
>   		&hint_eth_pppoes_ipv6_tcp},
> -	{pattern_eth_pppoes_ipv6_sctp,	    ICE_INSET_NONE,
> -		&hint_eth_pppoes_ipv6_sctp},
>   	{pattern_eth_pppoes,		    ICE_INSET_NONE,
>   		&hint_eth_pppoes},
>   };


More information about the dev mailing list