app/test: fix event timer adapter create unit test
Checks
Commit Message
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(-)
Comments
> -----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>
>>
>> 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.
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.
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.
@@ -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;
}