Re: [dpdk-dev] [PATCH 2/2] test: proceed if timer subsystem was initialized

2021-04-06 Thread Stanisław Kardach
Hi Thomas, Thanks for the review. On Tue, Apr 6, 2021 at 5:24 PM Thomas Monjalon wrote: > 26/03/2021 11:47, Michal Krawczyk: > > From: Stanislaw Kardach > > > > rte_timer_subsystem_init() may return -EALREADY if the timer subsystem > > was already initialized. This can happen i.e. in PMD code

Re: [dpdk-dev] [PATCH 2/2] test: proceed if timer subsystem was initialized

2021-04-06 Thread Thomas Monjalon
06/04/2021 17:31, Stanisław Kardach: > Hi Thomas, > > Thanks for the review. > > On Tue, Apr 6, 2021 at 5:24 PM Thomas Monjalon wrote: > > > 26/03/2021 11:47, Michal Krawczyk: > > > From: Stanislaw Kardach > > > > > > rte_timer_subsystem_init() may return -EALREADY if the timer subsystem > > >

Re: [dpdk-dev] [PATCH 2/2] test: proceed if timer subsystem was initialized

2021-04-06 Thread Thomas Monjalon
26/03/2021 11:47, Michal Krawczyk: > From: Stanislaw Kardach > > rte_timer_subsystem_init() may return -EALREADY if the timer subsystem > was already initialized. This can happen i.e. in PMD code (see > eth_ena_dev_init). This is not an error, rather a notification as the > initialization functio

[dpdk-dev] [PATCH 2/2] test: proceed if timer subsystem was initialized

2021-03-26 Thread Michal Krawczyk
From: Stanislaw Kardach rte_timer_subsystem_init() may return -EALREADY if the timer subsystem was already initialized. This can happen i.e. in PMD code (see eth_ena_dev_init). This is not an error, rather a notification as the initialization function simply returns without any action taken. Sig