DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample
@ 2020-12-21  5:46 psatheesh
  2021-01-27 16:47 ` Ferruh Yigit
  2021-01-31  8:53 ` Ori Kam
  0 siblings, 2 replies; 4+ messages in thread
From: psatheesh @ 2020-12-21  5:46 UTC (permalink / raw)
  To: Ori Kam, Wenzhuo Lu, Beilei Xing, Bernard Iremonger; +Cc: dev, Satheesh Paul

From: Satheesh Paul <psatheesh@marvell.com>

Add support to specify PF or VF as targets in "set sample_actions"
command.

Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
---

The changes add support for below usecases.

1. Sample mirror to PF
testpmd>set sample_actions 0 / pf / end
#pkts to VF id 2 will be mirrored to the PF
testpmd>flow create 0 ingress pattern eth / end actions sample ratio 1 \
        index 0 / vf id 2 / end

2. Sample mirror to VF
testpmd>set sample_actions 1 / vf id 1 / end
#pkts to VF id 2 will be mirrored to VF id 1
testpmd>flow create 0 ingress pattern eth / end actions sample ratio 1 \
        index 1 / vf id 2 / end

 app/test-pmd/cmdline_flow.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
index 585cab98b..12f2b1664 100644
--- a/app/test-pmd/cmdline_flow.c
+++ b/app/test-pmd/cmdline_flow.c
@@ -560,6 +560,7 @@ struct rte_flow_action_queue sample_queue[RAW_SAMPLE_CONFS_MAX_NUM];
 struct rte_flow_action_count sample_count[RAW_SAMPLE_CONFS_MAX_NUM];
 struct rte_flow_action_port_id sample_port_id[RAW_SAMPLE_CONFS_MAX_NUM];
 struct rte_flow_action_raw_encap sample_encap[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_vf sample_vf[RAW_SAMPLE_CONFS_MAX_NUM];
 
 /** Maximum number of subsequent tokens and arguments on the stack. */
 #define CTX_STACK_SIZE 16
@@ -7558,6 +7559,14 @@ cmd_set_raw_parsed_sample(const struct buffer *in)
 				(const void *)action->conf, size);
 			action->conf = &sample_port_id[idx];
 			break;
+		case RTE_FLOW_ACTION_TYPE_PF:
+			break;
+		case RTE_FLOW_ACTION_TYPE_VF:
+			size = sizeof(struct rte_flow_action_vf);
+			rte_memcpy(&sample_vf[idx],
+			(const void *)action->conf, size);
+			action->conf = &sample_vf[idx];
+			break;
 		default:
 			printf("Error - Not supported action\n");
 			return;
-- 
2.25.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample
  2020-12-21  5:46 [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample psatheesh
@ 2021-01-27 16:47 ` Ferruh Yigit
  2021-01-31  8:53 ` Ori Kam
  1 sibling, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2021-01-27 16:47 UTC (permalink / raw)
  To: psatheesh, Ori Kam, Wenzhuo Lu, Beilei Xing, Bernard Iremonger; +Cc: dev

On 12/21/2020 5:46 AM, psatheesh@marvell.com wrote:
> From: Satheesh Paul <psatheesh@marvell.com>
> 
> Add support to specify PF or VF as targets in "set sample_actions"
> command.
> 
> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>

Hi Ori,

Can you please support reviewing this patch?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample
  2020-12-21  5:46 [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample psatheesh
  2021-01-27 16:47 ` Ferruh Yigit
@ 2021-01-31  8:53 ` Ori Kam
  2021-02-02  9:14   ` Ferruh Yigit
  1 sibling, 1 reply; 4+ messages in thread
From: Ori Kam @ 2021-01-31  8:53 UTC (permalink / raw)
  To: psatheesh, Wenzhuo Lu, Beilei Xing, Bernard Iremonger; +Cc: dev

Hi,

> -----Original Message-----
> From: psatheesh@marvell.com <psatheesh@marvell.com>
> Sent: Monday, December 21, 2020 7:47 AM
> 
> From: Satheesh Paul <psatheesh@marvell.com>
> 
> Add support to specify PF or VF as targets in "set sample_actions"
> command.
> 
> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
> ---
> 
> The changes add support for below usecases.
> 
> 1. Sample mirror to PF
> testpmd>set sample_actions 0 / pf / end
> #pkts to VF id 2 will be mirrored to the PF
> testpmd>flow create 0 ingress pattern eth / end actions sample ratio 1 \
>         index 0 / vf id 2 / end
> 
> 2. Sample mirror to VF
> testpmd>set sample_actions 1 / vf id 1 / end
> #pkts to VF id 2 will be mirrored to VF id 1
> testpmd>flow create 0 ingress pattern eth / end actions sample ratio 1 \
>         index 1 / vf id 2 / end
> 
>  app/test-pmd/cmdline_flow.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
> index 585cab98b..12f2b1664 100644
> --- a/app/test-pmd/cmdline_flow.c
> +++ b/app/test-pmd/cmdline_flow.c
> @@ -560,6 +560,7 @@ struct rte_flow_action_queue
> sample_queue[RAW_SAMPLE_CONFS_MAX_NUM];
>  struct rte_flow_action_count
> sample_count[RAW_SAMPLE_CONFS_MAX_NUM];
>  struct rte_flow_action_port_id
> sample_port_id[RAW_SAMPLE_CONFS_MAX_NUM];
>  struct rte_flow_action_raw_encap
> sample_encap[RAW_SAMPLE_CONFS_MAX_NUM];
> +struct rte_flow_action_vf sample_vf[RAW_SAMPLE_CONFS_MAX_NUM];
> 
>  /** Maximum number of subsequent tokens and arguments on the stack. */
>  #define CTX_STACK_SIZE 16
> @@ -7558,6 +7559,14 @@ cmd_set_raw_parsed_sample(const struct buffer
> *in)
>  				(const void *)action->conf, size);
>  			action->conf = &sample_port_id[idx];
>  			break;
> +		case RTE_FLOW_ACTION_TYPE_PF:
> +			break;
> +		case RTE_FLOW_ACTION_TYPE_VF:
> +			size = sizeof(struct rte_flow_action_vf);
> +			rte_memcpy(&sample_vf[idx],
> +			(const void *)action->conf, size);
> +			action->conf = &sample_vf[idx];
> +			break;
>  		default:
>  			printf("Error - Not supported action\n");
>  			return;
> --
> 2.25.4
Acked-by: Ori Kam <orika@nvidia.com>

Best,
Ori



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample
  2021-01-31  8:53 ` Ori Kam
@ 2021-02-02  9:14   ` Ferruh Yigit
  0 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2021-02-02  9:14 UTC (permalink / raw)
  To: Ori Kam, psatheesh, Wenzhuo Lu, Beilei Xing, Bernard Iremonger; +Cc: dev

On 1/31/2021 8:53 AM, Ori Kam wrote:
> Hi,
> 
>> -----Original Message-----
>> From: psatheesh@marvell.com <psatheesh@marvell.com>
>> Sent: Monday, December 21, 2020 7:47 AM
>>
>> From: Satheesh Paul <psatheesh@marvell.com>
>>
>> Add support to specify PF or VF as targets in "set sample_actions"
>> command.
>>
>> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
> 
> Acked-by: Ori Kam <orika@nvidia.com>
> 

Applied to dpdk-next-net/main, thanks.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-02  9:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-21  5:46 [dpdk-dev] [PATCH] app/testpmd: add PF and VF targets to flow action type sample psatheesh
2021-01-27 16:47 ` Ferruh Yigit
2021-01-31  8:53 ` Ori Kam
2021-02-02  9:14   ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).