Re: [lng-odp] [PATCH] test:performance:add break statement to switch(opt)

2016-03-25 Thread Bill Fischofer
On Fri, Mar 25, 2016 at 11:49 AM, Balakrishna Garapati < balakrishna.garap...@linaro.org> wrote: > Signed-off-by: Balakrishna Garapati > Reviewed-by: Bill Fischofer > --- > v1:Fixes missing break between switch(opt) >

[lng-odp] [PATCH] test:performance:add break statement to switch(opt)

2016-03-25 Thread Balakrishna Garapati
Signed-off-by: Balakrishna Garapati --- v1:Fixes missing break between switch(opt) https://bugs.linaro.org/show_bug.cgi?id=2137 test/performance/odp_crypto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/performance/odp_crypto.c

Re: [lng-odp] [PATCH] test:performance:initialize undefined values

2016-03-25 Thread Bill Fischofer
On Fri, Mar 25, 2016 at 5:30 AM, Balakrishna Garapati < balakrishna.garap...@linaro.org> wrote: > Signed-off-by: Balakrishna Garapati > Reviewed-by: Bill Fischofer > --- > v1:fix for valgrind erros from crypto test >

Re: [lng-odp] [PATCH v3 5/6] linux-generic: dpdk: pass ODP_PKTIO_DPDK_PARAMS environment variable to dpdk init

2016-03-25 Thread Maxim Uvarov
On 03/23/16 16:14, Matias Elo wrote: Pass ODP_PKTIO_DPDK_PARAMS environment variable to rte_eal_init(). This can be used to pass DPDK only configuration options from command line. E.g. configuring vdev interfaces. Signed-off-by: Matias Elo --- DEPENDENCIES

Re: [lng-odp] [PATCH v3 6/6] linux-generic: dpdk: run validation tests with virtual pcap interfaces

2016-03-25 Thread Maxim Uvarov
Hello Matias, for me that test fails for some reason: EAL: Ask a virtual area of 0x20 bytes EAL: Virtual area found at 0x2b581c80 (size = 0x20) EAL: Ask a virtual area of 0x20 bytes EAL: Virtual area found at 0x2b581ca0 (size = 0x20) EAL: Ask a virtual area of 0x20

Re: [lng-odp] [PATCHv2 0/2] linux test for shared memory

2016-03-25 Thread Christophe Milard
Thanks. See you next week :-) On 23 Mar 2016 14:58, "Mike Holmes" wrote: > Maxim You missed some dates > > +++ b/platform/linux-generic/test/shmem/shmem_odp.c > @@ -0,0 +1,74 @@ > +/* Copyright (c) 2014, Linaro Limited > + * All rights reserved. > + * > + *

[lng-odp] [PATCH] test:performance:initialize undefined values

2016-03-25 Thread Balakrishna Garapati
Signed-off-by: Balakrishna Garapati --- v1:fix for valgrind erros from crypto test https://bugs.linaro.org/show_bug.cgi?id=2141 test/performance/odp_crypto.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/performance/odp_crypto.c

[lng-odp] [Bug 2133] linux-generic dpdk pktio clang warnings

2016-03-25 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=2133 Maxim Uvarov changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

Re: [lng-odp] [PATCH] linux-generic: dpdk: fix clang build

2016-03-25 Thread Maxim Uvarov
Merged, Maxim. On 03/21/16 11:06, Matias Elo wrote: Clang doesn't support using floating point values in constant expressions. Signed-off-by: Matias Elo --- platform/linux-generic/include/odp_packet_dpdk.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)

[lng-odp] [PATCHv5 1/2] scripts: add builddpdk

2016-03-25 Thread Maxim Uvarov
Add script to quickly build odp with dpdk pktio support. Signed-off-by: Maxim Uvarov --- .gitignore | 1 + scripts/build-pktio-dpdk | 34 ++ 2 files changed, 35 insertions(+) create mode 100755 scripts/build-pktio-dpdk

[lng-odp] [PATCHv5 2/2] DEPENDENCIES: take a note about scripts/build-pktio-dpdk

2016-03-25 Thread Maxim Uvarov
Signed-off-by: Maxim Uvarov --- DEPENDENCIES | 35 +-- 1 file changed, 9 insertions(+), 26 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 9fee177..e2eae38 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -76,7 +76,7 @@

[lng-odp] [PATCHv5 0/2] scripts: add builddpdk

2016-03-25 Thread Maxim Uvarov
v5: - in one more place changed x86-... to ${TARGET}. v4: - make it possible to run sript from different locations; - add check for installed pcap; Maxim Uvarov (2): scripts: add builddpdk DEPENDENCIES: take a note about scripts/build-pktio-dpdk .gitignore | 1 +