Re: [lng-odp] [NEXT PATCH] changelog: summary of changes for odp v1.13.0.0

2016-12-29 Thread Bill Fischofer
On Thu, Dec 29, 2016 at 9:33 AM, Maxim Uvarov wrote: > On 12/29/16 00:57, Bill Fischofer wrote: >> Signed-off-by: Bill Fischofer >> --- >> CHANGELOG | 163 >> ++ >> 1 file changed, 163 insertions(+) >> >> diff --git a/CHANGELOG b/CHANG

[lng-odp] [Bug 2782] LCOV: _odp_atomic_u64_cmp_xchg_strong_mm reported not tested

2016-12-29 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=2782 Maxim Uvarov changed: What|Removed |Added Ever confirmed|0 |1 Status|UNCONFIRMED

[lng-odp] [PATCH 2/2] configure.ac: helper: print debug config option

2016-12-29 Thread Maxim Uvarov
Add debug pritn config option for helper and do not drop configure options for building helper. Signed-off-by: Maxim Uvarov --- configure.ac| 10 ++ helper/Makefile.am | 2 +- helper/odph_debug.h | 4 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/configu

[lng-odp] [PATCH 1/2] helper: fix compilation with warnings

2016-12-29 Thread Maxim Uvarov
After turning on lost CFLAGS for checking errors, following things needs to be corrected to make code compile. Signed-off-by: Maxim Uvarov --- helper/chksum.c | 4 ++-- helper/hashtable.c | 42 ++ helper/lineartable.c | 27 +

Re: [lng-odp] [NEXT PATCH] changelog: summary of changes for odp v1.13.0.0

2016-12-29 Thread Maxim Uvarov
On 12/29/16 00:57, Bill Fischofer wrote: > Signed-off-by: Bill Fischofer > --- > CHANGELOG | 163 > ++ > 1 file changed, 163 insertions(+) > > diff --git a/CHANGELOG b/CHANGELOG > index 17afe44..e912835 100644 > --- a/CHANGELOG > +++ b

Re: [lng-odp] [API-NEXT PATCHv5 3/5] linux-gen: init: adding configuration file parsing

2016-12-29 Thread Maxim Uvarov
On 12/29/16 16:12, Christophe Milard wrote: > I have now updated the travis file (second comment) and had the > DEPENDENCIES file updated since the begining. Are we talking about > another third file? > > Christophe about DEPENDENCIES file. Maxim. > > On 29 December 2016 at 14:01, Maxim Uvar

Re: [lng-odp] [PATCH v3] helper: do not break odp_term_global protocol

2016-12-29 Thread Maxim Uvarov
Merged, Maxim. On 12/28/16 19:03, Christophe Milard wrote: > On 28 December 2016 at 16:12, Stanislaw Kardach wrote: >> As per API documentation, odp_term_global() should be a final ODP call >> when terminating the ODP application in a controlled way. Therefore ODP >> threads or sub-processes crea

Re: [lng-odp] [API-NEXT PATCHv5 3/5] linux-gen: init: adding configuration file parsing

2016-12-29 Thread Christophe Milard
I have now updated the travis file (second comment) and had the DEPENDENCIES file updated since the begining. Are we talking about another third file? Christophe On 29 December 2016 at 14:01, Maxim Uvarov wrote: > On 12/29/16 13:45, Christophe Milard wrote: >> On 22 December 2016 at 21:12, Maxim

Re: [lng-odp] [NEXT PATCH] api: pktio: pktio documentation typo correction

2016-12-29 Thread Maxim Uvarov
Merged to api-next. Might be my artefact from vim. I must be more careful this it. Thanks for finding it. Maxim. On 12/28/16 23:33, Bill Fischofer wrote: > Signed-off-by: Bill Fischofer > --- > include/odp/api/spec/packet_io.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff -

Re: [lng-odp] [API-NEXT PATCHv5 3/5] linux-gen: init: adding configuration file parsing

2016-12-29 Thread Maxim Uvarov
On 12/29/16 13:45, Christophe Milard wrote: > On 22 December 2016 at 21:12, Maxim Uvarov wrote: >> On 12/19/16 13:50, Christophe Milard wrote: >>> The parsing of the odp.conf configuration file is added. >>> The file is searched first in the local directory (.) and >>> then is the $prefix/etc dire

[lng-odp] [API-NEXTv6 5/5] linux-gen: drv_drivers: loading modules from config file

2016-12-29 Thread Christophe Milard
The shared objects listed in the ODP configuration files are loaded at init time. The odp configuration file list the shared objects to be loaded as shown in the following example: module = { modules = ["enumerator1.so", "driver1.so"]; }; Signed-off-by: Christophe Milard --- configure.ac

[lng-odp] [API-NEXTv6 4/5] test: preventing odp.conf loading for tests

2016-12-29 Thread Christophe Milard
The tests should not be affected by any system or user ODP configuration file. The ODP_SYSCONFIG_FILE environment variables is therefore set to "none" in TESTS_ENVIRONMENT. Tests which needs specific a configuration file will have to overwrite this setting. Note that tests ran manually (not using m

[lng-odp] [API-NEXTv6 3/5] linux-gen: init: adding configuration file parsing

2016-12-29 Thread Christophe Milard
The parsing of the odp.conf configuration file is added. The file is searched first in the local directory (.) and then is the $prefix/etc directory. This requires libconfig (sudo apt-get install libconfig-dev) Signed-off-by: Christophe Milard --- .travis.yml |

[lng-odp] [API-NEXTv6 2/5] linux-gen: adding enum, devio and driver registration interface (stub)

2016-12-29 Thread Christophe Milard
The linux implementation for the enumerator class registration function, enumerator instance registration function, devio and driver registration functions (stub) Signed-off-by: Christophe Milard --- include/odp_drv.h | 1 + platform/linux-generic/Makefile.am

[lng-odp] [API-NEXTv6 1/5] drv: adding driver registration interface (stub)

2016-12-29 Thread Christophe Milard
The enumerator class, enumerator instance, devio and driver registration functions prototypes (and a draft of their parameters) are defined, the goal being to define the registration framework only. Signed-off-by: Christophe Milard --- include/odp/drv/spec/driver.h | 293

[lng-odp] [API-NEXTv6 0/5] driver initialisation framework

2016-12-29 Thread Christophe Milard
Since V5: -name and comment changes as suggested by Maxim in https://lists.linaro.org/pipermail/lng-odp/2016-December/027400.html -update .travis.yml Since V4: -typo fix (Thanks Yi!) -rebased. Since V3: -minor interface simplification and name change (Christophe) -Fix for clang (Bill) -G

Re: [lng-odp] [API-NEXT PATCHv5 3/5] linux-gen: init: adding configuration file parsing

2016-12-29 Thread Christophe Milard
On 22 December 2016 at 21:12, Maxim Uvarov wrote: > On 12/19/16 13:50, Christophe Milard wrote: >> The parsing of the odp.conf configuration file is added. >> The file is searched first in the local directory (.) and >> then is the $prefix/etc directory. >> This requires libconfig (sudo apt-get in

Re: [lng-odp] [API-NEXT PATCHv5 1/5] drv: adding driver registration interface (stub)

2016-12-29 Thread Christophe Milard
On 22 December 2016 at 21:40, Maxim Uvarov wrote: > On 12/19/16 13:50, Christophe Milard wrote: >> The enumerator class, enumerator instance, devio and driver registration >> functions prototypes (and a draft of their parameters) are >> defined, the goal being to define the registration framework

Re: [lng-odp] [API-NEXT PATCHv2 2/6] drv: adding odpdrv_shm_pool functions

2016-12-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Christophe Milard > Sent: Thursday, December 29, 2016 9:57 AM > To: mike.hol...@linaro.org; bill.fischo...@linaro.org; yi...@linaro.org; > forrest@linaro.org; lng-odp@lists.linaro.org > Subje