Re: [dpdk-dev] [PATCH v3 01/12] eal: add param register infrastructure

2018-10-10 Thread Thomas Monjalon
10/10/2018 12:51, Kevin Laatz: > --- /dev/null > +++ b/lib/librte_eal/common/include/rte_param.h Please add a global doxygen comment for the file. The context or goal is missing here. We need to understand what is the purpose of this new API file. Thanks

[dpdk-dev] [PATCH v3 01/12] eal: add param register infrastructure

2018-10-10 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