[PATCH] app/testpmd: fix flex item input link parsing

Slava Ovsiienko viacheslavo at nvidia.com
Mon Mar 14 09:48:05 CET 2022


Acked-by: Viacheslav Ovsiienko <viacheslavo at nvidia.com>

> -----Original Message-----
> From: Gregory Etelson <getelson at nvidia.com>
> Sent: Thursday, March 10, 2022 8:00
> To: dev at dpdk.org
> Cc: Gregory Etelson <getelson at nvidia.com>; Matan Azrad
> <matan at nvidia.com>; Raslan Darawsheh <rasland at nvidia.com>;
> stable at dpdk.org; Xiaoyun Li <xiaoyun.li at intel.com>; Aman Singh
> <aman.deep.singh at intel.com>; Yuying Zhang <yuying.zhang at intel.com>;
> Slava Ovsiienko <viacheslavo at nvidia.com>
> Subject: [PATCH] app/testpmd: fix flex item input link parsing
> 
> Testpmd reads flex item configuration from a JSON file.
> Flex item input link description is stored in testpmd flow item format. For
> example, `eth type is 0x0800`.
> The item description is placed into a general testpmd CLI flow rule command
> template and parsed to convert string into flow item object.
> 
> The patch adds the `actions` section to the flow rule template.
> 
> Cc: stable at dpdk.org
> 
> Fixes: 59f3a8acbcdb ("app/testpmd: add flex item commands")
> Signed-off-by: Gregory Etelson <getelson at nvidia.com>
> ---
>  app/test-pmd/cmd_flex_item.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/app/test-pmd/cmd_flex_item.c b/app/test-pmd/cmd_flex_item.c
> index 9050825a81..78a89c0f8a 100644
> --- a/app/test-pmd/cmd_flex_item.c
> +++ b/app/test-pmd/cmd_flex_item.c
> @@ -133,7 +133,8 @@ flex_link_item_parse(const char *src, struct
> rte_flow_item *item)
>  	struct rte_flow_item *pattern;
>  	struct rte_flow_action *actions;
> 
> -	sprintf(flow_rule, "flow create 0 pattern %s / end", src);
> +	sprintf(flow_rule,
> +		"flow create 0 pattern %s / end actions drop / end", src);
>  	src = flow_rule;
>  	ret = flow_parse(src, (void *)data, sizeof(data),
>  			 &attr, &pattern, &actions);
> --
> 2.35.1



More information about the stable mailing list