Re: [dpdk-dev] [PATCH] app/testpmd: fix testpmd initialization

2018-05-14 Thread Thomas Monjalon
> > Patch adding configurable locking has reshuffled some init stages, but did > > not > > put them back in correct order. Fix order of init by moving everything that > > was before arguments parsing into correct places. > > > > Fixes: e505d84c64ab ("app/testpmd: make locking memory configurable"

Re: [dpdk-dev] [PATCH] app/testpmd: fix testpmd initialization

2018-05-14 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Anatoly Burakov > Sent: Monday, May 14, 2018 4:47 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Wu, Jingjing ; > tho...@monjalon.net; Yigit, Ferruh > > Subject: [dpdk-dev] [PATCH]

Re: [dpdk-dev] [PATCH] app/testpmd: fix testpmd initialization

2018-05-14 Thread Ali Alnubani
Tested-by: Ali Alnubani > -Original Message- > From: dev On Behalf Of Anatoly Burakov > Sent: Monday, May 14, 2018 6:47 PM > To: dev@dpdk.org > Cc: Wenzhuo Lu ; Jingjing Wu > ; Thomas Monjalon ; > ferruh.yi...@intel.com > Subject: [dpdk-dev] [PATCH]

[dpdk-dev] [PATCH] app/testpmd: fix testpmd initialization

2018-05-14 Thread Anatoly Burakov
Patch adding configurable locking has reshuffled some init stages, but did not put them back in correct order. Fix order of init by moving everything that was before arguments parsing into correct places. Fixes: e505d84c64ab ("app/testpmd: make locking memory configurable") Reported-by: Thomas Mo