DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] test/event: remove timer state check
@ 2023-07-31 13:29 pbhagavatula
  2023-08-04 16:26 ` Carrillo, Erik G
  0 siblings, 1 reply; 3+ messages in thread
From: pbhagavatula @ 2023-07-31 13:29 UTC (permalink / raw)
  To: jerinj, Erik Gabriel Carrillo; +Cc: dev, Pavan Nikhilesh

From: Pavan Nikhilesh <pbhagavatula@marvell.com>

Remove checking if timer state is set to RTE_EVENT_TIMER_NOT_ARMED
after the timer has expired as certain timer device implementations
might not have access to the rte_event_timer handle of a timer event.

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
---
 app/test/test_event_timer_adapter.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/test/test_event_timer_adapter.c b/app/test/test_event_timer_adapter.c
index 510bebcf86..2bc2e026a9 100644
--- a/app/test/test_event_timer_adapter.c
+++ b/app/test/test_event_timer_adapter.c
@@ -1944,9 +1944,9 @@ test_timer_ticks_remaining(void)
 
 	TEST_ASSERT_EQUAL(timeout_event_dequeue(&ev, 1, WAIT_TICKS(1)), 1,
 			  "Armed timer failed to trigger.");
-	TEST_ASSERT_EQUAL(ev_tim->state, RTE_EVENT_TIMER_NOT_ARMED,
-			  "Improper timer state set expected %d returned %d",
-			  RTE_EVENT_TIMER_NOT_ARMED, ev_tim->state);
+
+	if (ev_tim->state != RTE_EVENT_TIMER_NOT_ARMED)
+		ev_tim->state = RTE_EVENT_TIMER_NOT_ARMED;
 
 	/* Test that timer that fired returns error */
 	TEST_ASSERT_FAIL(rte_event_timer_remaining_ticks_get(timdev, ev_tim,
-- 
2.25.1


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

* RE: [PATCH] test/event: remove timer state check
  2023-07-31 13:29 [PATCH] test/event: remove timer state check pbhagavatula
@ 2023-08-04 16:26 ` Carrillo, Erik G
  2023-08-08 12:48   ` Jerin Jacob
  0 siblings, 1 reply; 3+ messages in thread
From: Carrillo, Erik G @ 2023-08-04 16:26 UTC (permalink / raw)
  To: pbhagavatula, jerinj; +Cc: dev

> -----Original Message-----
> From: pbhagavatula@marvell.com <pbhagavatula@marvell.com>
> Sent: Monday, July 31, 2023 8:29 AM
> To: jerinj@marvell.com; Carrillo, Erik G <erik.g.carrillo@intel.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@marvell.com>
> Subject: [PATCH] test/event: remove timer state check
> 
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> Remove checking if timer state is set to RTE_EVENT_TIMER_NOT_ARMED
> after the timer has expired as certain timer device implementations might
> not have access to the rte_event_timer handle of a timer event.
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> ---
Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>

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

* Re: [PATCH] test/event: remove timer state check
  2023-08-04 16:26 ` Carrillo, Erik G
@ 2023-08-08 12:48   ` Jerin Jacob
  0 siblings, 0 replies; 3+ messages in thread
From: Jerin Jacob @ 2023-08-08 12:48 UTC (permalink / raw)
  To: Carrillo, Erik G; +Cc: pbhagavatula, jerinj, dev

On Fri, Aug 4, 2023 at 9:56 PM Carrillo, Erik G
<erik.g.carrillo@intel.com> wrote:
>
> > -----Original Message-----
> > From: pbhagavatula@marvell.com <pbhagavatula@marvell.com>
> > Sent: Monday, July 31, 2023 8:29 AM
> > To: jerinj@marvell.com; Carrillo, Erik G <erik.g.carrillo@intel.com>
> > Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@marvell.com>
> > Subject: [PATCH] test/event: remove timer state check
> >
> > From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> >
> > Remove checking if timer state is set to RTE_EVENT_TIMER_NOT_ARMED
> > after the timer has expired as certain timer device implementations might
> > not have access to the rte_event_timer handle of a timer event.
> >
> > Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> > ---
> Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>


Applied to dpdk-next-net-eventdev/for-main. Thanks

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

end of thread, other threads:[~2023-08-08 12:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-31 13:29 [PATCH] test/event: remove timer state check pbhagavatula
2023-08-04 16:26 ` Carrillo, Erik G
2023-08-08 12:48   ` Jerin Jacob

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).