Re: [lng-odp] [PATCH] linux-generic: schedule: simplify wait logic to avoid clang issues

2016-07-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
This is exactly what we should not do - hide a bug in one compiler version with additional code. It results lower performance for all compiler targets and code that is unnecessary cryptic to maintain. > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Be

Re: [lng-odp] [PATCH 4/4] example: hello: add hello world example application

2016-07-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
> Usually it's when prints from an application go two different routes. You > have to remember log both stderr and stdout to catch both. Usually it's annoying ... ___ lng-odp mailing list lng-odp@lists.linaro.org https://lists.linaro.org/mailman/listin

Re: [lng-odp] [PATCH 4/4] example: hello: add hello world example application

2016-07-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Friday, July 01, 2016 11:55 AM > To: Savolainen, Petri (Nokia - FI/Espoo) labs.com>; lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH 4/4] example: hello: add hello world exa

Re: [lng-odp] [PATCH 4/4] example: hello: add hello world example application

2016-07-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Friday, July 01, 2016 11:15 AM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH 4/4] example: hello: add hello world example > application > > some review comm

Re: [lng-odp] [PATCH 5/7] linux-generic: cpumask: use CPU_SETSIZE

2016-07-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
> >> > >> diff --git a/example/classifier/odp_classifier.c > >> b/example/classifier/odp_classifier.c > >> index 20e64ec..84b4a28 100644 > >> --- a/example/classifier/odp_classifier.c > >> +++ b/example/classifier/odp_classifier.c > >> @@ -4,6 +4,7 @@ > >> * SPDX-License-Identifier: BSD-3-Cla

Re: [lng-odp] [PATCH] linux-gen: sched: clang bug workaround

2016-06-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill > Fischofer > Sent: Thursday, June 30, 2016 9:45 PM > To: Mike Holmes > Cc: Elo, Matias (Nokia - FI/Espoo) ; lng- > odp > Subject: Re: [lng-odp] [PATCH] linux-gen: sched: clang bug workaroun

Re: [lng-odp] [PATCH] linux-gen: sched: clang bug workaround

2016-06-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Mike > Holmes > Sent: Thursday, June 30, 2016 6:55 PM > To: Elo, Matias (Nokia - FI/Espoo) > Cc: lng-odp > Subject: Re: [lng-odp] [PATCH] linux-gen: sched: clang bug workaround > > On 30 June 20

Re: [lng-odp] [PATCH/API-NEXTv2 1/3] api: traffic_mngr: Add pktio interface to odp_tm_egress_t struct

2016-06-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
This patch: Reviewed-by: Petri Savolainen Remind that series need to be squashed into a single commit since the type change under will break the build otherwise. > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Balasubramanian Manoharan > S

Re: [lng-odp] [PATCHv3 1/2] validation: queue: avoid out of bounds references

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
alf Of Maxim > Uvarov > Sent: Wednesday, June 29, 2016 7:27 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCHv3 1/2] validation: queue: avoid out of > bounds references > > Merged, > Maxim. > > On 06/29/16 15:36, Savolainen, Petri (Nokia - FI/Espoo) wr

Re: [lng-odp] [PATCHv3 2/2] validation: queue: use malloc to avoid limits on max_queues

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
I think that there should be another test which tries to create all those millions of queues (reserve memory for handles from shm) and try to enqueue event through those. This one should be simple test to see if capability API there or not. System may stuck before malloc fails. -Petri > --

Re: [lng-odp] [PATCHv3 1/2] validation: queue: avoid out of bounds references

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
This patch: Reviewed-by: Petri Savolainen > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill > Fischofer > Sent: Wednesday, June 29, 2016 3:00 PM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCHv3 1/2] validation: queue: avoid out o

Re: [lng-odp] [PATCH 4/7] linux-generic: set thread affinity POSIX style

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
> > I looked into the call tree of odp_init_local but couldn't find anything > that would be sensitive to thread affinity like register initializations > etc. Were you referring to a platform other than linux-generic. > > Regards, > Ruslan Yes, this concerns other, more HW accelerated platform

Re: [lng-odp] [PATCHv2 1/2] validation: queue: use signed vars to avoid out of bounds references

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
> - uint32_t num_queues, i; > + int32_t num_queues, i; It's better to align with API types (uint32_t) and set num_queues correctly. I sent a patch which does that. -Petri ___ lng-odp mailing list lng-odp@lists.linaro.org https://lists.linaro.

Re: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid artificial limits on max_queues

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Wednesday, June 29, 2016 4:43 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid artificial limits on max_queues I've sent a

Re: [lng-odp] [PATCH 4/7] linux-generic: set thread affinity POSIX style

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Ruslan Babayev > Sent: Wednesday, June 29, 2016 6:32 AM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCH 4/7] linux-generic: set thread affinity POSIX > style > > pthread_attr_setaffin

Re: [lng-odp] [PATCH 5/7] linux-generic: cpumask: use CPU_SETSIZE

2016-06-29 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Ruslan Babayev > Sent: Wednesday, June 29, 2016 6:32 AM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCH 5/7] linux-generic: cpumask: use CPU_SETSIZE > > Compilation with musl libc break

Re: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid artificial limits on max_queues

2016-06-28 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Monday, June 27, 2016 5:20 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid artificial limits on max_queues On Mon, Jun 27, 2016

Re: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid artificial limits on max_queues

2016-06-27 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill > Fischofer > Sent: Monday, June 27, 2016 5:09 AM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCH 2/2] validation: queue: use malloc to avoid > artificial limits on max_queues > >

Re: [lng-odp] [PATCH/API-NEXT 1/3] api: traffic_mngr: Add pktio interface to odp_tm_egress_t struct

2016-06-23 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Monday, June 20, 2016 2:02 PM > To: lng-odp@lists.linaro.org > Cc: spin...@mellanox.com; Savolainen, Petri (Nokia - FI/Espoo) > ; Balasubramanian Manoharan > > Subj

Re: [lng-odp] [PATCH 1/2] linux-gen: tm: correct invalid packet handle definitions

2016-06-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Wednesday, June 22, 2016 9:30 AM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH 1/2] linux-gen: tm: correct invalid packet > handle definitions > > On 06/21/

Re: [lng-odp] [PATCH 6/6] linux-gen: sched: add pktio_stop_finalize to scheduler interface

2016-06-16 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Thursday, June 16, 2016 2:35 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH 6/6] linux-gen: sched: add > pktio_stop_finalize to scheduler interface > > On

Re: [lng-odp] [PATCH 5/6] test: pktio: improve start_stop test

2016-06-16 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Thursday, June 16, 2016 2:33 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH 5/6] test: pktio: improve start_stop test > > On 06/15/16 13:44, Petri Savolai

Re: [lng-odp] [PATCH 2/6] linux-gen: sched: call pktio_start only once

2016-06-16 Thread Savolainen, Petri (Nokia - FI/Espoo)
> > --- a/platform/linux-generic/odp_schedule.c > > +++ b/platform/linux-generic/odp_schedule.c > > @@ -417,33 +417,34 @@ static void schedule_pktio_start(odp_pktio_t > pktio, int num_in_queue, > > odp_queue_t queue; > > int i, idx; > > > > - buf = odp_buffer_alloc(sched->pool); > > - >

Re: [lng-odp] [PATCH] contributing: add user agreement and short log conventions

2016-06-14 Thread Savolainen, Petri (Nokia - FI/Espoo)
> + > +performance:: > +Patch applies to the ODP performance test suite contained in the > +`test/performance` directory. Performance is not optimal tag since it gives an impression that some performance optimization was done, etc. I have used e.g. "test: l2fwd: ..." > + > +linux-generic:: >

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-14 Thread Savolainen, Petri (Nokia - FI/Espoo)
ling and there may be other bugs hiding also… > > > > -Petri > > > > > > From: Bill Fischofer [mailto:bill.fischo...@linaro.org] > > Sent: Friday, June 10, 2016 3:15 AM > > To: Savolainen, Petri (Nokia - FI/Espoo) labs.com> > > Cc: LNG ODP Mailman List &g

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-13 Thread Savolainen, Petri (Nokia - FI/Espoo)
Ping. linux-gen was approved as commit prefix in arch call yesterday. Bill has reviewed this series. -Petri > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Savolainen, Petri (Nokia - FI/Espoo) > Sent: Friday, June 10, 2016

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-10 Thread Savolainen, Petri (Nokia - FI/Espoo)
: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH 0/7] SP scheduler For this series: Reviewed-and-tested-by: Bill Fischofer mailto:bill.fischo...@linaro.org>> Petri: I tracked down the bug you uncovered regarding the timer test failing if you

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-10 Thread Savolainen, Petri (Nokia - FI/Espoo)
has been merged from odp-linux implementation e.g. to the odp-dpdk implementation / repo. -Petri > -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Friday, June 10, 2016 11:54 AM > To: Savolainen, Petri (Nokia - FI/Espoo) labs.com>; lng

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-10 Thread Savolainen, Petri (Nokia - FI/Espoo)
Not sure what you propose here. I think "linux-gen" is a good compromise: "linux-generic" unnecessary long and "l-g" does not tell much. -Petri > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Thursday, June 09, 2016 11:0

Re: [lng-odp] [PATCH 0/7] SP scheduler

2016-06-10 Thread Savolainen, Petri (Nokia - FI/Espoo)
: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH 0/7] SP scheduler For this series: Reviewed-and-tested-by: Bill Fischofer Petri: I tracked down the bug you uncovered regarding the timer test failing if you don't allocate a dummy pool and p

Re: [lng-odp] packet copy questions

2016-06-07 Thread Savolainen, Petri (Nokia - FI/Espoo)
pool. The function just fails if copy cannot be performed (all packet data or metadata cannot be stored into dst pool). -Petri From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Monday, June 06, 2016 10:53 PM To: Zoltan Kiss Cc: lng-odp ; Savolainen, Petri (Nokia - FI/Espoo

Re: [lng-odp] [PATCH v2 4/6] linux-gen: sched: add skeleton for strict priority

2016-06-06 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Monday, June 06, 2016 9:16 PM > To: Savolainen, Petri (Nokia - FI/Espoo) ; > lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH v2 4/6] linux-gen: sched: add skeleton for > stric

Re: [lng-odp] [PATCH v2 4/6] linux-gen: sched: add skeleton for strict priority

2016-06-06 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim > Uvarov > Sent: Monday, June 06, 2016 3:22 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH v2 4/6] linux-gen: sched: add skeleton for > strict priority > > WARNING: extern

Re: [lng-odp] [PATCH 5/6] linux-gen: sched: bind default scheduler api calls

2016-06-01 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Wednesday, June 01, 2016 11:11 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH 5/6] linux-gen: sched: bind default scheduler api calls On Wed, Jun 1, 2016 at 8:04 AM, Petri

Re: [lng-odp] [PATCH] linux-gen: implementation name is odp-linux

2016-05-31 Thread Savolainen, Petri (Nokia - FI/Espoo)
Ping. From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Friday, May 27, 2016 4:13 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH] linux-gen: implementation name is odp-linux This looks good. There are some additional references

Re: [lng-odp] [PATCHv3] linux-generic: sched: do not allocate sheduler info in shm area

2016-05-31 Thread Savolainen, Petri (Nokia - FI/Espoo)
quot;, ¶ms); without additional flags or worries about name space clash. -Petri > -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Tuesday, May 31, 2016 10:02 AM > To: lng-odp@lists.linaro.org > Cc: Maxim Uvarov ; Savolainen, Petri (Nokia - > FI

Re: [lng-odp] [PATCHv2] linux-generic: sched: do not allocate sheduler info in shm area

2016-05-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Monday, May 30, 2016 11:26 PM > To: lng-odp@lists.linaro.org > Cc: Maxim Uvarov ; Savolainen, Petri (Nokia - > FI/Espoo) > Subject: [PATCHv2] linux-generic: sched: do not allocate s

Re: [lng-odp] [PATCH] linux-generic: sched: do not allocate sheduler info in shm area

2016-05-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Maxim Uvarov [mailto:maxim.uva...@linaro.org] > Sent: Monday, May 30, 2016 4:37 PM > To: lng-odp@lists.linaro.org > Cc: Maxim Uvarov ; Savolainen, Petri (Nokia - > FI/Espoo) > Subject: [PATCH] linux-generic: sched: do not allocate shedul

Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join

2016-05-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Christophe Milard [mailto:christophe.mil...@linaro.org] > Sent: Monday, May 30, 2016 3:52 PM > To: Savolainen, Petri (Nokia - FI/Espoo) > Cc: yi...@linaro.org; lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCHv3] helper: cl

Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join

2016-05-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Monday, May 30, 2016 1:34 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: yi...@linaro.org; lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join On 30 May 2016

Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join

2016-05-30 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Friday, May 27, 2016 4:08 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: yi...@linaro.org; lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join On 27 May 2016

Re: [lng-odp] [PATCHv3] helper: cleaner interface to odph_odpthreads_create/join

2016-05-27 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Christophe Milard > Sent: Friday, May 27, 2016 10:39 AM > To: yi...@linaro.org; lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCHv3] helper: cleaner interface to > odph_odpthreads_create/join

Re: [lng-odp] [PATCH 2/2] doc: userguide: add notes on threads and addressing scope

2016-05-23 Thread Savolainen, Petri (Nokia - FI/Espoo)
> >> > >> === Addressing Scope > >> -Unless specifically noted in the API, all ODP resources are global to > >> the ODP > >> -application, whether it runs as a single process or multiple > processes. > >> ODP > >> -handles therefore have common meaning within an ODP application but > have > >> no

Re: [lng-odp] [PATCHv2] doc: proper definition of ODP thread

2016-05-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Friday, May 20, 2016 10:22 AM To: Bill Fischofer Cc: Mike Holmes ; Savolainen, Petri (Nokia - FI/Espoo) ; LNG ODP Mailman List Subject: Re: [PATCHv2] doc: proper definition of ODP thread On 20 May 2016 at 05:32, Bill

Re: [lng-odp] [PATCH 1/2] doc: userguide: add section describing helpers

2016-05-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Friday, May 20, 2016 2:58 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: Christophe Milard ; LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH 1/2] doc: userguide: add section describing helpers On Thu, May 19, 2016 at 3:09

Re: [lng-odp] [PATCHv2] doc: proper definition of ODP thread

2016-05-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
> --- a/include/odp/api/spec/init.h > +++ b/include/odp/api/spec/init.h > @@ -234,6 +234,10 @@ int odp_term_global(odp_instance_t instance); > * All threads must call this function before calling any other ODP API > * functions. The instance parameter specifies which ODP instance the > thread >

Re: [lng-odp] [PATCH] doc: proper definition of ODP thread

2016-05-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Christophe Milard [mailto:christophe.mil...@linaro.org] > Sent: Thursday, May 19, 2016 12:57 PM > To: bill.fischo...@linaro.org; mike.hol...@linaro.org; Savolainen, Petri > (Nokia - FI/Espoo) ; lng-odp@lists.linaro.org > Cc: Christophe

Re: [lng-odp] [PATCH 1/2] doc: userguide: add section describing helpers

2016-05-19 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, May 19, 2016 10:43 AM > To: Bill Fischofer > Cc: LNG ODP Mailman List > Subject: Re: [lng-odp] [PATCH 1/2] doc: userguide: add section describing > helpers >

Re: [lng-odp] [PATCHv7 00/35] running things in process mode

2016-05-18 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed patches 1-10 Reviewed-by: Petri Savolainen > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Christophe Milard > Sent: Tuesday, May 17, 2016 4:04 PM > To: lng-odp@lists.linaro.org; brian.bro...@linaro.org; > mike.hol...@linaro.org > S

Re: [lng-odp] lng-odp mailman settings

2016-05-16 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill Fischofer Sent: Saturday, May 14, 2016 1:55 AM To: Brian Brooks Cc: lng-odp Subject: Re: [lng-odp] lng-odp mailman settings On Friday, May 13, 2016, Brian Brooks mailto:brian.bro...@linaro.org>> wrote: On 05/13 10:07

Re: [lng-odp] [PATCH 1/3] test: scheduling: simplify code structure

2016-05-13 Thread Savolainen, Petri (Nokia - FI/Espoo)
Ping for merge. I’ll continue scheduler interface development on top of this. -Petri From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Thursday, May 12, 2016 2:30 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [PATCH 1/3] test

Re: [lng-odp] process thread and mixed mode

2016-05-13 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Friday, May 13, 2016 11:16 AM To: Petri Savolainen ; Brian Brooks ; Bill Fischofer ; Mike Holmes ; LNG ODP Mailman List ; Anders Roxell Cc: Tobias Lindquist Subject: process thread and mixed mode Hi, Let me start in a bit

Re: [lng-odp] [PATCHv6 12/38] helper: parsing the complete set of options

2016-05-13 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Thursday, May 12, 2016 6:07 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCHv6 12/38] helper: parsing the complete set of options On 12 May 2016 at 12:54, Savolainen

Re: [lng-odp] [PATCHv6 05/38] helpers: linux: creating functions to handle odpthreads

2016-05-13 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Brian > Brooks > Sent: Thursday, May 12, 2016 6:02 PM > To: Christophe Milard > Cc: lng-odp@lists.linaro.org; Savolainen, Petri (Nokia - FI/Espoo) > > Subject: Re:

Re: [lng-odp] [PATCHv6 05/38] helpers: linux: creating functions to handle odpthreads

2016-05-12 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Christophe Milard Sent: Thursday, May 12, 2016 2:14 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCHv6 05/38] helpers: linux: creating functions to handle odpthreads

Re: [lng-odp] [PATCHv6 12/38] helper: parsing the complete set of options

2016-05-12 Thread Savolainen, Petri (Nokia - FI/Espoo)
...@lists.linaro.org] On Behalf Of Christophe Milard Sent: Thursday, May 12, 2016 12:05 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCHv6 12/38] helper: parsing the complete set of options Not sure which patches you want to squash here: "h

Re: [lng-odp] [PATCHv6 05/38] helpers: linux: creating functions to handle odpthreads

2016-05-12 Thread Savolainen, Petri (Nokia - FI/Espoo)
> +int odph_odpthreads_create(odph_odpthread_t *thread_tbl, > +const odp_cpumask_t *mask, > +const odph_odpthread_params_t *thr_params) > +{ > + int i; > + int num; > + int cpu_count; > + int cpu; > + > + num = odp_cpumask_count(m

Re: [lng-odp] [PATCHv6 12/38] helper: parsing the complete set of options

2016-05-12 Thread Savolainen, Petri (Nokia - FI/Espoo)
It would be really good to squash these patches introducing (and then modifying the previously introduced) new helper function prototypes into a single patch. This way it's hard to see the complete picture what functions were actually added into helper/linux.h -Petri > -Original Message-

Re: [lng-odp] [PATCHv6 05/38] helpers: linux: creating functions to handle odpthreads

2016-05-12 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of > Christophe Milard > Sent: Wednesday, May 11, 2016 7:42 PM > To: brian.bro...@linaro.org; mike.hol...@linaro.org; lng- > o...@lists.linaro.org > Subject: [lng-odp] [PATCHv6 05/38] helpers: linux:

Re: [lng-odp] [PATCH] linux-generic: use default huge page size

2016-05-11 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Maxim Uvarov Sent: Wednesday, May 11, 2016 11:44 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCH] linux-generic: use default huge page size On 11 May 2016 at 10:37

Re: [lng-odp] ODP Addressing Model

2016-05-11 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Mike Holmes [mailto:mike.hol...@linaro.org] Sent: Wednesday, May 11, 2016 4:54 AM To: Bill Fischofer Cc: Savolainen, Petri (Nokia - FI/Espoo) ; LNG ODP Mailman List Subject: Re: [lng-odp] ODP Addressing Model On 10 May 2016 at 20:33, Bill Fischofer mailto:bill.fischo

Re: [lng-odp] [API-NEXT PATCH] api: system: specify default huge page size

2016-05-11 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen mailto:petri.savolai...@nokia.com>> From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill Fischofer Sent: Wednesday, May 11, 2016 1:39 AM To: Maxim Uvarov Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH] api: system: specify de

Re: [lng-odp] [PATCH] linux-generic: use default huge page size

2016-05-11 Thread Savolainen, Petri (Nokia - FI/Espoo)
Other option would be to loop though the /sys/kernel/mm/hugepages directory and see which size are available (nr_hugepages > 0). I'd expect that /sys/kernel/mm/... content is better "standardized" than proc file content. Does all platforms (x86, arm, mips, power, ...) have the same content in pr

Re: [lng-odp] ODP Addressing Model

2016-05-10 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill Fischofer Sent: Tuesday, May 10, 2016 12:54 AM To: LNG ODP Mailman List Subject: [lng-odp] ODP Addressing Model The purpose of this thread is to summarize the discussions we've had over the past week on this topic and t

Re: [lng-odp] [PATCH] helper: remove unused odph_linux_process_fork API

2016-05-09 Thread Savolainen, Petri (Nokia - FI/Espoo)
[mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Christophe Milard Sent: Monday, May 09, 2016 9:21 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCH] helper: remove unused odph_linux_process_fork API I am not sure I really agree with that

Re: [lng-odp] [PATCH] linux-generic: arch: add missing cache line size definition for linux

2016-05-06 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of Bill Fischofer Sent: Thursday, May 05, 2016 1:38 AM To: Mike Holmes Cc: lng-odp Subject: Re: [lng-odp] [PATCH] linux-generic: arch: add missing cache line size definition for linux On Wed, May 4, 2016 at 2:53 PM, Mike Hol

Re: [lng-odp] [PATCH] helper: remove unused odph_linux_process_fork API

2016-05-06 Thread Savolainen, Petri (Nokia - FI/Espoo)
Direct pthreads and process helpers should not be removed. Although our validation tests and examples need to be thread type agnostic, there are a bunch of other applications that will want to use either Linux pthread or process (not opaque threads). Tests should be added for direct pthread/pro

Re: [lng-odp] [PATCH] api: packet: update description for odp_packet_align()

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 26, 2016 3:29 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [lng-odp] [PATCH] api: packet: update description for odp_packet_align() I was originally going to require that the max align

Re: [lng-odp] [PATCH API-NEXTv2 1/2] api: pktio: Adds interface loopback mode

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
Both patches: Reviewed-by: Petri Savolainen > -Original Message- > From: EXT Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Tuesday, April 26, 2016 3:09 PM > To: lng-odp@lists.linaro.org > Cc: Savolainen, Petri (Nokia - FI/Espoo) ; > Balasub

Re: [lng-odp] [PATCH] api: packet: update description for odp_packet_align()

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Bill Fischofer > Sent: Monday, April 25, 2016 5:19 PM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [PATCH] api: packet: update description for > odp_packet_align() > > Minor rewording

Re: [lng-odp] [API-NEXT 1/2] api: pktio: Adds interface loopback mode

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: EXT Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Tuesday, April 26, 2016 12:14 PM > To: lng-odp@lists.linaro.org > Cc: Savolainen, Petri (Nokia - FI/Espoo) ; > Balasubramanian Manoharan > Subject: [API-NEXT

Re: [lng-odp] [API-NEXT PATCH 2/6] api: config: replace pool config with pool capability

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
diff --git a/test/validation/pktio/pktio.c b/test/validation/pktio/pktio.c index 2f98b10..68a2987 100644 --- a/test/validation/pktio/pktio.c +++ b/test/validation/pktio/pktio.c @@ -1636,6 +1636,9 @@ int pktio_check_send_failure(void) odp_pktio_param_t pktio_param; int iface_idx = 0

Re: [lng-odp] [API-NEXT PATCH 1/6] api: pool: add pool capability

2016-04-26 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 26, 2016 1:42 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH 1/6] api: pool: add pool capability On Mon, Apr 25, 2016 at 11:36 AM, Petri Savolainen

Re: [lng-odp] [API-NEXT PATCH 5/6] api: queue: replaced config api with capability structure

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
This one causes the scheduler validation test to seg fault. Didn't have time to investigate it more today... everything should be the same with the capability API than with the config #defines. I'll try to figure it out tomorrow. -Petri > -Original Message- > From: lng-odp [mailto:lng

Re: [lng-odp] [API-NEXTv3 1/4] api: classification: Adds capability and PMR range

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen > -Original Message- > From: EXT Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Monday, April 25, 2016 5:21 PM > To: lng-odp@lists.linaro.org > Cc: Savolainen, Petri (Nokia - FI/Espoo) ; > Balasubramanian Manohara

Re: [lng-odp] [API-NEXTv2 1/4] api: classification: Adds capability and PMR range

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: EXT Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Friday, April 22, 2016 8:30 PM > To: lng-odp@lists.linaro.org > Cc: Savolainen, Petri (Nokia - FI/Espoo) ; > Balasubramanian Manoharan > Subject: [API-NEXTv2 1/4

Re: [lng-odp] [API-NEXT PATCH v3 4/4] api: packet: update add_data and rem_data definition

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
This (or v2 of it, which is the same) was merged already last week. The last one missing is: [API-NEXT PATCH v3 2/4] api: packet: rename and add copy functions -Petri > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Maxim Uvarov > Sent:

Re: [lng-odp] [API-NEXT PATCH v3 3/4] api: packet: add data align

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Maxim Uvarov > Sent: Monday, April 25, 2016 12:31 PM > To: Bala Manoharan ; Bill Fischofer > > Cc: LNG ODP Mailman List > Subject: Re: [lng-odp] [API-NEXT PATCH v3 3/4] api: packet: add dat

Re: [lng-odp] [API-NEXT PATCH v3 2/4] api: packet: rename and add copy functions

2016-04-25 Thread Savolainen, Petri (Nokia - FI/Espoo)
Ping. I believe Bill accepted this one also. This v3 2/4 corrected the move_data() specification according to his suggestion. Hopefully, it applies still after the reordering of the patch set (this is the last one of the four patches). -Petri > -Original Message- > From: lng-odp [m

Re: [lng-odp] [API-NEXT PATCH v3 3/4] api: packet: add data align

2016-04-22 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Friday, April 22, 2016 4:48 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: EXT Bala Manoharan ; LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH v3 3/4] api: packet: add data align On Fri, Apr 22, 2016 at 5:06 AM

Re: [lng-odp] [API-NEXT PATCH v3 3/4] api: packet: add data align

2016-04-22 Thread Savolainen, Petri (Nokia - FI/Espoo)
s functions for segment level modifications (which Bill rejected). This replaces that proposal, and should be easier to “accept” since it leaves segment implementation more open. -Petri From: EXT Bala Manoharan [mailto:bala.manoha...@linaro.org] Sent: Friday, April 22, 2016 12:35 PM To: Savola

Re: [lng-odp] [API-NEXT PATCH] api: queue: remove const qualifier of passed down event array

2016-04-22 Thread Savolainen, Petri (Nokia - FI/Espoo)
To: Zoltan Kiss Cc: LNG ODP Mailman List ; Savolainen, Petri (Nokia - FI/Espoo) Subject: Re: [API-NEXT PATCH] api: queue: remove const qualifier of passed down event array On Thu, Apr 21, 2016 at 1:31 PM, Zoltan Kiss mailto:zoltan.k...@linaro.org>> wrote: As the description says, no

Re: [lng-odp] [API-NEXT 1/4] api: classification: Adds capability and PMR range

2016-04-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bala Manoharan [mailto:bala.manoha...@linaro.org] Sent: Friday, April 22, 2016 8:43 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org Subject: Re: [API-NEXT 1/4] api: classification: Adds capability and PMR range On 21 April 2016 at 17:30, Savolainen, Petri

Re: [lng-odp] [API-NEXT 1/4] api: classification: Adds capability and PMR range

2016-04-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: EXT Balasubramanian Manoharan [mailto:bala.manoha...@linaro.org] > Sent: Thursday, April 21, 2016 9:19 AM > To: lng-odp@lists.linaro.org > Cc: Savolainen, Petri (Nokia - FI/Espoo) ; > Balasubramanian Manoharan > Subject: [API-NEXT 1/4

Re: [lng-odp] [API-NEXT PATCH v2 2/4] api: packet: rename and add copy functions

2016-04-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Wednesday, April 20, 2016 8:38 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH v2 2/4] api: packet: rename and add copy functions It would be better if this were in

Re: [lng-odp] [API-NEXT PATCH v2 3/4] api: packet: add data align

2016-04-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Wednesday, April 20, 2016 8:22 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH v2 3/4] api: packet: add data align On Wed, Apr 20, 2016 at 10:12 AM, Petri Savolainen

Re: [lng-odp] [PATCH] validation: time: shorten test duration

2016-04-21 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Maxim Uvarov > Sent: Wednesday, April 20, 2016 7:04 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH] validation: time: shorten test duration > > that patch is not part of cur

Re: [lng-odp] [API-NEXT PATCHv8] api: make only the API visible

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen Couple of "visibiity" typos. > odpapiplatincludedir= $(includedir)/odp/api/plat > diff --git a/platform/linux-generic/include/odp/api/visibility_begin.h > b/platform/linux-generic/include/odp/api/visibility_begin.h > new file mode 100644 > index 000..9f45948

Re: [lng-odp] [API-NEXT PATCH 3/3] api: packet: rename and add copy functions

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
We still need to be very precise about how this operation works when overlap is present to ensure implementation interoperability. The man page for memmove() states: The memory areas may overlap: copying takes place as though the bytes in src are first copied into a temporary array that doe

Re: [lng-odp] [API-NEXT PATCHv3 4/6] api: packet: add odp_packet_input_index() api

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Bill Fischofer > Sent: Saturday, April 16, 2016 8:56 PM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [API-NEXT PATCHv3 4/6] api: packet: add > odp_packe

Re: [lng-odp] [API-NEXT PATCHv3 1/6] api: pktio: add pktio index conversion API

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen > -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Bill Fischofer > Sent: Saturday, April 16, 2016 8:56 PM > To: lng-odp@lists.linaro.org > Subject: [lng-odp] [API-NEXT PATCHv3 1/6] api: pktio: add pktio index >

Re: [lng-odp] [API-NEXT PATCH 2/3] api: packet: add segment level head and tailroom

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 19, 2016 7:55 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH 2/3] api: packet: add segment level head and tailroom On Tue, Apr 19, 2016 at 10:00 AM

Re: [lng-odp] [API-NEXT PATCH 3/3] api: packet: rename and add copy functions

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 19, 2016 9:37 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH 3/3] api: packet: rename and add copy functions General comment: These are a lot of new

Re: [lng-odp] [API-NEXT PATCH 1/3] api: packet: add packet concat and split

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 19, 2016 9:20 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH 1/3] api: packet: add packet concat and split On Tue, Apr 19, 2016 at 8:07 AM, Petri

Re: [lng-odp] odp_cpumask_default_worker() and availability of the returned CPU's

2016-04-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of EXT > Ivan Khoronzhuk > Sent: Tuesday, April 19, 2016 6:49 PM > To: lng-odp@lists.linaro.org > Subject: Re: [lng-odp] odp_cpumask_default_worker() and availability of > the returned CPU's > > >

Re: [lng-odp] [API-NEXT PATCH 2/3] api: packet: add segment level head and tailroom

2016-04-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Bill Fischofer [mailto:bill.fischo...@linaro.org] Sent: Tuesday, April 19, 2016 5:39 PM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: LNG ODP Mailman List Subject: Re: [lng-odp] [API-NEXT PATCH 2/3] api: packet: add segment level head and tailroom General question: How is segment

Re: [lng-odp] [PATCH] validation: time: shorten test duration

2016-04-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: EXT Ivan Khoronzhuk [mailto:ivan.khoronz...@linaro.org] > Sent: Monday, April 18, 2016 3:53 PM > To: Savolainen, Petri (Nokia - FI/Espoo) ; > lng-odp@lists.linaro.org > Subject: Re: [lng-odp] [PATCH] validation: time: shorten test durat

Re: [lng-odp] [API-NEXT PATCHv6] api: make only the API visible

2016-04-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
From: EXT Mike Holmes [mailto:mike.hol...@linaro.org] Sent: Tuesday, April 19, 2016 2:13 PM To: Bill Fischofer Cc: Savolainen, Petri (Nokia - FI/Espoo) ; lng-odp-forward Subject: Re: [lng-odp] [API-NEXT PATCHv6] api: make only the API visible On 19 April 2016 at 06:39, Bill Fischofer

Re: [lng-odp] [GIT PULL ODP] running things in process mode

2016-04-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
surely needed. Implementation of the agnostic and not agnostic functions may share the core parts of the code. -Petri From: EXT Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Tuesday, April 19, 2016 11:10 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org

Re: [lng-odp] [GIT PULL ODP] running things in process mode

2016-04-19 Thread Savolainen, Petri (Nokia - FI/Espoo)
execution is forked. Also parameters are different (pid_t, status, pthread_attr_t, …) -Petri From: EXT Christophe Milard [mailto:christophe.mil...@linaro.org] Sent: Tuesday, April 19, 2016 10:40 AM To: Savolainen, Petri (Nokia - FI/Espoo) Cc: lng-odp@lists.linaro.org; mike.hol...@linaro.org Subject

<    1   2   3   4   5   6   7   8   9   10   >