[PATCH] test/event: fix incorrect target event queue
Amit Prakash Shukla
amitprakashs at marvell.com
Thu Aug 22 10:01:13 CEST 2024
> -----Original Message-----
> From: pbhagavatula at marvell.com <pbhagavatula at marvell.com>
> Sent: Thursday, August 22, 2024 2:08 AM
> To: Jerin Jacob <jerinj at marvell.com>; Amit Prakash Shukla
> <amitprakashs at marvell.com>
> Cc: dev at dpdk.org; Pavan Nikhilesh Bhagavatula
> <pbhagavatula at marvell.com>
> Subject: [PATCH] test/event: fix incorrect target event queue
>
> From: Pavan Nikhilesh <pbhagavatula at marvell.com>
>
> In OP_FWD mode, if internal port is supported, the target event queue should
> be the TEST_APP_EV_QUEUE_ID.
>
> Fixes: a276e7c8fbb3 ("test/event: add DMA adapter auto-test")
>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula at marvell.com>
> ---
> app/test/test_event_dma_adapter.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
Tested-by: Amit Prakash Shukla <amitprakashs at marvell.com>
Acked-by: Amit Prakash Shukla <amitprakashs at marvell.com>
Thanks.
>
> diff --git a/app/test/test_event_dma_adapter.c
> b/app/test/test_event_dma_adapter.c
> index 3b39521153bb..9988d4fc7bc5 100644
> --- a/app/test/test_event_dma_adapter.c
> +++ b/app/test/test_event_dma_adapter.c
> @@ -271,7 +271,10 @@ test_op_forward_mode(void)
> ev[i].event = 0;
> ev[i].op = RTE_EVENT_OP_NEW;
> ev[i].event_type = RTE_EVENT_TYPE_DMADEV;
> - ev[i].queue_id = TEST_DMA_EV_QUEUE_ID;
> + if (params.internal_port_op_fwd)
> + ev[i].queue_id = TEST_APP_EV_QUEUE_ID;
> + else
> + ev[i].queue_id = TEST_DMA_EV_QUEUE_ID;
> ev[i].sched_type = RTE_SCHED_TYPE_ATOMIC;
> ev[i].flow_id = 0xAABB;
> ev[i].event_ptr = op;
> --
> 2.45.2
More information about the dev
mailing list