Re: [dpdk-dev] [PATCH v4 01/13] eal: add param register infrastructure

2018-10-16 Thread Thomas Monjalon
16/10/2018 16:20, Laatz, Kevin: > Hi Thomas, > > Thanks for reviewing, see replies below. > > > On 16/10/2018 14:42, Thomas Monjalon wrote: > > Hi, > > > > 11/10/2018 18:58, Kevin Laatz: > >> This commit adds infrastructure to EAL that allows an application to > >> register it's init function wi

Re: [dpdk-dev] [PATCH v4 01/13] eal: add param register infrastructure

2018-10-16 Thread Laatz, Kevin
Hi Thomas, Thanks for reviewing, see replies below. On 16/10/2018 14:42, Thomas Monjalon wrote: Hi, 11/10/2018 18:58, Kevin Laatz: This commit adds infrastructure to EAL that allows an application to register it's init function with EAL. This allows libraries to be initialized at the end of

Re: [dpdk-dev] [PATCH v4 01/13] eal: add param register infrastructure

2018-10-16 Thread Thomas Monjalon
Hi, 11/10/2018 18:58, Kevin Laatz: > This commit adds infrastructure to EAL that allows an application to > register it's init function with EAL. This allows libraries to be > initialized at the end of EAL init. > > This infrastructure allows libraries that depend on EAL to be initialized > as pa

Re: [dpdk-dev] [PATCH v4 01/13] eal: add param register infrastructure

2018-10-15 Thread Van Haaren, Harry
> -Original Message- > From: Laatz, Kevin > Sent: Thursday, October 11, 2018 9:58 AM > To: dev@dpdk.org > Cc: Van Haaren, Harry ; > step...@networkplumber.org; gaetan.ri...@6wind.com; shreyansh.j...@nxp.com; > tho...@monjalon.net; mattias.ronnb...@ericsson.com; Richardson, Bruce > ; Laatz,

[dpdk-dev] [PATCH v4 01/13] eal: add param register infrastructure

2018-10-11 Thread Kevin Laatz
This commit adds infrastructure to EAL that allows an application to register it's init function with EAL. This allows libraries to be initialized at the end of EAL init. This infrastructure allows libraries that depend on EAL to be initialized as part of EAL init, removing circular dependency iss