[dpdk-dev] [PATCH] net/ice: fix switch action number check

Xiao, QimaiX qimaix.xiao at intel.com
Thu May 21 11:21:30 CEST 2020


Tested-by: Xiao, QimaiX <qimaix.xiao at intel.com>

Regards,
Xiao Qimai

> -----Original Message-----
> From: dev <dev-bounces at dpdk.org> On Behalf Of Wei Zhao
> Sent: Thursday, May 21, 2020 3:34 PM
> To: dev at dpdk.org
> Cc: stable at dpdk.org; Zhang, Qi Z <qi.z.zhang at intel.com>; Ye, Xiaolong
> <xiaolong.ye at intel.com>; Zhao1, Wei <wei.zhao1 at intel.com>
> Subject: [dpdk-dev] [PATCH] net/ice: fix switch action number check
> 
> The action number for switch filter should be 1, any other such as 0 or more
> than 1 is invalid.
> 
> Fixes: 3428c6b6ec1f ("net/ice: add action number check for switch")
> Cc: stable at dpdk.org
> 
> Signed-off-by: Wei Zhao <wei.zhao1 at intel.com>
> ---
>  drivers/net/ice/ice_switch_filter.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ice/ice_switch_filter.c
> b/drivers/net/ice/ice_switch_filter.c
> index dd3f4847a..20e8187d3 100644
> --- a/drivers/net/ice/ice_switch_filter.c
> +++ b/drivers/net/ice/ice_switch_filter.c
> @@ -1388,7 +1388,7 @@ ice_switch_check_action(const struct
> rte_flow_action *actions,
>  		}
>  	}
> 
> -	if (actions_num > 1) {
> +	if (actions_num != 1) {
>  		rte_flow_error_set(error,
>  				   EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
>  				   actions,
> --
> 2.19.1



More information about the dev mailing list