Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-22 Thread Ola Liljedahl
> > >> -Original Message- >> From: Ola Liljedahl [mailto:ola.liljed...@arm.com] >> Sent: Wednesday, June 21, 2017 7:31 PM >> To: Savolainen, Petri (Nokia - FI/Espoo) ; >> Brian Brooks ; lng-odp@lists.linaro.org >> Cc: nd >> Subject: Re: [l

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-22 Thread Bill Fischofer
On Thu, Jun 22, 2017 at 11:46 AM, Brian Brooks wrote: >> > > The first is built only for ARM and the second for the rest. Would there >> > >be a way to build both always ? >> > For ARMv7a and ARMv8a, you could build both versions. You really want to >> > use the LL/SC version on these architecture

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-22 Thread Brian Brooks
> > > The first is built only for ARM and the second for the rest. Would there > > >be a way to build both always ? > > For ARMv7a and ARMv8a, you could build both versions. You really want to > > use the LL/SC version on these architectures. > > > > For architectures without double-word LL/SC, on

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-22 Thread Savolainen, Petri (Nokia - FI/Espoo)
> -Original Message- > From: Ola Liljedahl [mailto:ola.liljed...@arm.com] > Sent: Wednesday, June 21, 2017 7:31 PM > To: Savolainen, Petri (Nokia - FI/Espoo) ; > Brian Brooks ; lng-odp@lists.linaro.org > Cc: nd > Subject: Re: [lng-odp] [API-NEXT PATCH v9 4/6] linu

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Maxim Uvarov
On 06/21/17 21:57, Honnappa Nagarahalli wrote: > I cannot make a decision on this topic. This is what I have been told > and I am also told that Linaro is in sync on this. I will initiate > some discussions on this internally. Bill, do you want to check in > Linaro on this? > we will check this f

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Honnappa Nagarahalli
I cannot make a decision on this topic. This is what I have been told and I am also told that Linaro is in sync on this. I will initiate some discussions on this internally. Bill, do you want to check in Linaro on this? I suggest we go ahead with the patch and agree to change it when we have a dec

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Bill Fischofer
It's perfectly fine to have an ARM copyright as the original contributor, but it also needs a Linaro copyright to be incorporated into ODP. See traffic_mngr.c for an example of this. On Wed, Jun 21, 2017 at 9:27 AM, Honnappa Nagarahalli wrote: > Hi Maxim, > This is a new file added by us. Hen

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Ola Liljedahl
On 20/06/2017, 15:12, "Savolainen, Petri (Nokia - FI/Espoo)" wrote: >> +++ b/platform/linux-generic/include/odp_llqueue.h >> @@ -0,0 +1,309 @@ >> +/* Copyright (c) 2017, ARM Limited. >> + * All rights reserved. >> + * >> + * SPDX-License-Identifier:BSD-3-Clause >> + */ >> + >> +#ifnde

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Honnappa Nagarahalli
I think we have talked about this earlier. We have been directed from our executives that we should use ARM copyright if a member has done this work and Linaro/LNG/FF/Bill are in sync on this. Thanks, Honnappa On 21 June 2017 at 10:10, Maxim Uvarov wrote: > On 06/21/17 17:27, Honnappa Nagarahall

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Maxim Uvarov
On 06/21/17 17:27, Honnappa Nagarahalli wrote: Hi Maxim, This is a new file added by us. Hence the ARM copyright. Thanks, Honnappa Was this work done as Linaro member/assignee? If yes - it has to have Linaro copyright as I know. Maxim. On 21 June 2017 at 09:06, Maxim Uvarov wrote:

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Maxim Uvarov
On 06/19/17 22:12, Brian Brooks wrote: Signed-off-by: Ola Liljedahl Reviewed-by: Brian Brooks --- platform/linux-generic/Makefile.am | 1 + platform/linux-generic/include/odp_llqueue.h | 309 +++ 2 files changed, 310 insertions(+) create mode 100644 pla

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Honnappa Nagarahalli
Hi Maxim, This is a new file added by us. Hence the ARM copyright. Thanks, Honnappa On 21 June 2017 at 09:06, Maxim Uvarov wrote: > On 06/19/17 22:12, Brian Brooks wrote: >> >> --- /dev/null >> +++ b/platform/linux-generic/include/odp_llqueue.h >> @@ -0,0 +1,309 @@ >> +/* Copyright (c) 2017,

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-21 Thread Maxim Uvarov
On 06/19/17 22:12, Brian Brooks wrote: --- /dev/null +++ b/platform/linux-generic/include/odp_llqueue.h @@ -0,0 +1,309 @@ +/* Copyright (c) 2017, ARM Limited. + * All rights reserved. + * + * SPDX-License-Identifier:BSD-3-Clause + */ + Has to be Linaro copyright. Maxim.

Re: [lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-20 Thread Savolainen, Petri (Nokia - FI/Espoo)
> +++ b/platform/linux-generic/include/odp_llqueue.h > @@ -0,0 +1,309 @@ > +/* Copyright (c) 2017, ARM Limited. > + * All rights reserved. > + * > + * SPDX-License-Identifier:BSD-3-Clause > + */ > + > +#ifndef ODP_LLQUEUE_H_ > +#define ODP_LLQUEUE_H_ > + > +#include > +#include > +#includ

[lng-odp] [API-NEXT PATCH v9 4/6] linux-gen: sched scalable: add a concurrent queue

2017-06-19 Thread Brian Brooks
Signed-off-by: Ola Liljedahl Reviewed-by: Brian Brooks --- platform/linux-generic/Makefile.am | 1 + platform/linux-generic/include/odp_llqueue.h | 309 +++ 2 files changed, 310 insertions(+) create mode 100644 platform/linux-generic/include/odp_llqueue.h di