* [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test
@ 2021-08-30 20:12 Shijith Thotton
2021-09-09 20:11 ` Carrillo, Erik G
0 siblings, 1 reply; 5+ messages in thread
From: Shijith Thotton @ 2021-08-30 20:12 UTC (permalink / raw)
To: dev; +Cc: Shijith Thotton, jerinj, pbhagavatula, Erik Gabriel Carrillo
Removed freeing of unallocated mempool in event timer adapter create
unit test.
Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
Signed-off-by: Shijith Thotton <sthotton@marvell.com>
---
app/test/test_event_timer_adapter.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/app/test/test_event_timer_adapter.c b/app/test/test_event_timer_adapter.c
index 121c2d93e8..12c00e678e 100644
--- a/app/test/test_event_timer_adapter.c
+++ b/app/test/test_event_timer_adapter.c
@@ -1070,8 +1070,6 @@ adapter_create(void)
TEST_ASSERT_SUCCESS(rte_event_timer_adapter_free(adapter),
"Failed to free adapter");
- rte_mempool_free(eventdev_test_mempool);
-
return TEST_SUCCESS;
}
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test
2021-08-30 20:12 [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test Shijith Thotton
@ 2021-09-09 20:11 ` Carrillo, Erik G
2021-10-22 4:34 ` Shijith Thotton
2021-10-25 9:56 ` Thomas Monjalon
0 siblings, 2 replies; 5+ messages in thread
From: Carrillo, Erik G @ 2021-09-09 20:11 UTC (permalink / raw)
To: Shijith Thotton, dev; +Cc: jerinj, pbhagavatula
> -----Original Message-----
> From: Shijith Thotton <sthotton@marvell.com>
> Sent: Monday, August 30, 2021 3:13 PM
> To: dev@dpdk.org
> Cc: Shijith Thotton <sthotton@marvell.com>; jerinj@marvell.com;
> pbhagavatula@marvell.com; Carrillo, Erik G <erik.g.carrillo@intel.com>
> Subject: [PATCH] app/test: fix event timer adapter create unit test
>
> Removed freeing of unallocated mempool in event timer adapter create unit
> test.
>
> Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
>
> Signed-off-by: Shijith Thotton <sthotton@marvell.com>
Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test
2021-09-09 20:11 ` Carrillo, Erik G
@ 2021-10-22 4:34 ` Shijith Thotton
2021-10-25 9:54 ` Thomas Monjalon
2021-10-25 9:56 ` Thomas Monjalon
1 sibling, 1 reply; 5+ messages in thread
From: Shijith Thotton @ 2021-10-22 4:34 UTC (permalink / raw)
To: Carrillo, Erik G, dev, Thomas Monjalon
Cc: Jerin Jacob Kollanukkaran, Pavan Nikhilesh Bhagavatula
>>
>> Removed freeing of unallocated mempool in event timer adapter create unit
>> test.
>>
>> Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
>>
>> Signed-off-by: Shijith Thotton <sthotton@marvell.com>
>Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
Thomas, Please merge this patch.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test
2021-10-22 4:34 ` Shijith Thotton
@ 2021-10-25 9:54 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2021-10-25 9:54 UTC (permalink / raw)
To: Shijith Thotton
Cc: Carrillo, Erik G, dev, Jerin Jacob Kollanukkaran,
Pavan Nikhilesh Bhagavatula
22/10/2021 06:34, Shijith Thotton:
> >>
> >> Removed freeing of unallocated mempool in event timer adapter create unit
> >> test.
> >>
> >> Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
> >>
> >> Signed-off-by: Shijith Thotton <sthotton@marvell.com>
> >Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
>
> Thomas, Please merge this patch.
It is eventdev related, it should have been delegated to Jerin.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test
2021-09-09 20:11 ` Carrillo, Erik G
2021-10-22 4:34 ` Shijith Thotton
@ 2021-10-25 9:56 ` Thomas Monjalon
1 sibling, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2021-10-25 9:56 UTC (permalink / raw)
To: Shijith Thotton; +Cc: dev, jerinj, pbhagavatula, Carrillo, Erik G
09/09/2021 22:11, Carrillo, Erik G:
> > From: Shijith Thotton <sthotton@marvell.com>
> >
> > Removed freeing of unallocated mempool in event timer adapter create unit
> > test.
> >
> > Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
> >
> > Signed-off-by: Shijith Thotton <sthotton@marvell.com>
> Acked-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-25 9:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-30 20:12 [dpdk-dev] [PATCH] app/test: fix event timer adapter create unit test Shijith Thotton
2021-09-09 20:11 ` Carrillo, Erik G
2021-10-22 4:34 ` Shijith Thotton
2021-10-25 9:54 ` Thomas Monjalon
2021-10-25 9:56 ` Thomas Monjalon
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).