[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-10-14 Thread David Marchand
On Wed, Oct 14, 2015 at 2:05 AM, Stephen Hemminger < stephen at networkplumber.org> wrote: > Given all this, I recommend that Thomas not apply this patch. > Please resubmit if there is a real problem with drivers (something in > tree). > There are enough other bugs to fix without chasing ghosts. >

[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-10-13 Thread Stephen Hemminger
On Tue, 10 Mar 2015 06:55:41 -0400 Neil Horman wrote: > On Tue, Mar 10, 2015 at 10:08:24AM +0100, David Marchand wrote: > > Hello Neil, > > > > On Mon, Mar 9, 2015 at 4:21 PM, Neil Horman > > wrote: > > > > > On Mon, Mar 09, 2015 at 03:56:38PM +0100, David Marchand wrote: > > > > Loading shar

[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-03-10 Thread David Marchand
Hello Neil, On Mon, Mar 9, 2015 at 4:21 PM, Neil Horman wrote: > On Mon, Mar 09, 2015 at 03:56:38PM +0100, David Marchand wrote: > > Loading shared libraries should be done at the very start of eal init so > that > > the code statically built in dpdk and the code loaded from shared > objects is

[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-03-10 Thread Neil Horman
On Tue, Mar 10, 2015 at 10:08:24AM +0100, David Marchand wrote: > Hello Neil, > > On Mon, Mar 9, 2015 at 4:21 PM, Neil Horman wrote: > > > On Mon, Mar 09, 2015 at 03:56:38PM +0100, David Marchand wrote: > > > Loading shared libraries should be done at the very start of eal init so > > that > > >

[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-03-09 Thread David Marchand
Loading shared libraries should be done at the very start of eal init so that the code statically built in dpdk and the code loaded from shared objects is handled (almost) the same way wrt to call to rte_eal_init(). The only thing that must be done before is filling the solib_list which is done by

[dpdk-dev] [PATCH 1/2] eal/linux: move plugin load to very start of eal init

2015-03-09 Thread Neil Horman
On Mon, Mar 09, 2015 at 03:56:38PM +0100, David Marchand wrote: > Loading shared libraries should be done at the very start of eal init so that > the code statically built in dpdk and the code loaded from shared objects is > handled (almost) the same way wrt to call to rte_eal_init(). > The only th