Re: [dpdk-dev] rte_log simplification using constructor scheme

2020-06-16 Thread Jerin Jacob
On Tue, Jun 9, 2020 at 1:55 AM Thomas Monjalon wrote: > > 27/05/2020 18:05, Jerin Kollanukkaran: > > +#define RTE_LOG_REGISTER(type, name, level)\ > > +int type; \ > > +RTE_INIT(__##type)

Re: [dpdk-dev] rte_log simplification using constructor scheme

2020-06-08 Thread Thomas Monjalon
27/05/2020 18:05, Jerin Kollanukkaran: > +#define RTE_LOG_REGISTER(type, name, level)\ > +int type; \ > +RTE_INIT(__##type) \ > +{

[dpdk-dev] rte_log simplification using constructor scheme

2020-05-27 Thread Jerin Kollanukkaran
Based on the discussion happed on http://patches.dpdk.org/patch/69681/, I would like simply the rte_log to use constructor scheme and submit patch to update existing consumer of rte_log to use new scheme for v20.08. RTE_LOG_REGISTER will an optional symbol to use the rte_log registration mechanism