Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Bala Manoharan
On 15 March 2017 at 09:35, Honnappa Nagarahalli < honnappa.nagaraha...@linaro.org> wrote: > On 14 March 2017 at 17:18, Bill Fischofer > wrote: > > > > > > On Tue, Mar 14, 2017 at 4:02 PM, Honnappa Nagarahalli > > wrote: > >> > >> On 14 March 2017 at 14:41, Dmitry Eremin-Solenikov > >> wrote: >

Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Honnappa Nagarahalli
On 14 March 2017 at 17:18, Bill Fischofer wrote: > > > On Tue, Mar 14, 2017 at 4:02 PM, Honnappa Nagarahalli > wrote: >> >> On 14 March 2017 at 14:41, Dmitry Eremin-Solenikov >> wrote: >> > Hi, >> > >> > On 14.03.2017 07:06, Honnappa Nagarahalli wrote: >> >> 2) What is the purpose of the depreca

Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Bill Fischofer
On Tue, Mar 14, 2017 at 4:02 PM, Honnappa Nagarahalli < honnappa.nagaraha...@linaro.org> wrote: > On 14 March 2017 at 14:41, Dmitry Eremin-Solenikov > wrote: > > Hi, > > > > On 14.03.2017 07:06, Honnappa Nagarahalli wrote: > >> 2) What is the purpose of the deprecated API flag? > > > > It's purpo

Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Honnappa Nagarahalli
On 14 March 2017 at 14:41, Dmitry Eremin-Solenikov wrote: > Hi, > > On 14.03.2017 07:06, Honnappa Nagarahalli wrote: >> 2) What is the purpose of the deprecated API flag? > > It's purpose is to allow applications to recognize that the API is going > to be removed in the next release and thus to mi

Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Dmitry Eremin-Solenikov
Hi, On 14.03.2017 07:06, Honnappa Nagarahalli wrote: > 2) What is the purpose of the deprecated API flag? It's purpose is to allow applications to recognize that the API is going to be removed in the next release and thus to migrate from old API to new replacement. -- With best wishes Dmitry

Re: [lng-odp] ABI and deprecated API flag

2017-03-14 Thread Honnappa Nagarahalli
Hi Bill, I have not received any answers to this question. Can you please add this topic for discussion for Wednesday's (3/15) meeting? Thank you, Honnappa On 13 March 2017 at 23:06, Honnappa Nagarahalli wrote: > Hi, >I had few questions after the discussion about ABI and deprecated > AP

[lng-odp] [PATCHv2] validation: packet: do not require a max packet length

2017-03-14 Thread Bill Fischofer
Address bug https://bugs.linaro.org/show_bug.cgi?id=2908 by adding appropriate pool capability checks to the packet and crypto tests to account for pkt.max_len, pkt.max_seg_len, or pkt.max_segs_per_pkt being zero, indicating these limits are bound only by available memory. Signed-off-by: Bill Fisc

Re: [lng-odp] [PATCH] test: bench_packet: add tests for reference functions

2017-03-14 Thread Bill Fischofer
On Tue, Mar 14, 2017 at 1:52 AM, Elo, Matias (Nokia - FI/Espoo) < matias@nokia-bell-labs.com> wrote: > > > On 13 Mar 2017, at 19:58, Bill Fischofer > wrote: > > > > This is a good start and I have no problem merging this as-is if we want > to do this in stages, but I think a bit more is neede

Re: [lng-odp] [PATCH v2] test: bench_packet: add tests for reference functions

2017-03-14 Thread Bill Fischofer
On Tue, Mar 14, 2017 at 2:30 AM, Matias Elo wrote: > Add microbenchmarks for the new packet reference functions. > > Signed-off-by: Matias Elo > Reviewed-and-tested-by: Bill Fischofer > --- > V2: > - Use offset that is closer to real use cases > > test/common_plat/performance/odp_bench_pack

[lng-odp] [PATCHv2 0/5] test: generator: improve performance

2017-03-14 Thread Bogdan Pricope
Improve performance of "odp_generator" example application. Bogdan Pricope (5): test: generator: compose sending packets from reference packet plus differences test: generator: send UDP packets in bursts test: generator: receive packets in bursts test: generator: use multiple RX queue

[lng-odp] [PATCHv2 5/5] test: generator: use multiple TX queues in send UDP mode

2017-03-14 Thread Bogdan Pricope
Signed-off-by: Bogdan Pricope --- example/generator/odp_generator.c | 136 +++--- 1 file changed, 84 insertions(+), 52 deletions(-) diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c index 9f0484f..1ed2868 100644 --- a/example/gene

[lng-odp] [PATCHv2 3/5] test: generator: receive packets in bursts

2017-03-14 Thread Bogdan Pricope
Signed-off-by: Bogdan Pricope --- example/generator/odp_generator.c | 29 +++-- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c index 2d95ba8..e14c62f 100644 --- a/example/generator/odp_

[lng-odp] [PATCHv2 4/5] test: generator: use multiple RX queue in receiving mode

2017-03-14 Thread Bogdan Pricope
Signed-off-by: Bogdan Pricope --- example/generator/odp_generator.c | 23 +-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c index e14c62f..9f0484f 100644 --- a/example/generator/odp_generat

[lng-odp] [PATCHv2 2/5] test: generator: send UDP packets in bursts

2017-03-14 Thread Bogdan Pricope
Signed-off-by: Bogdan Pricope --- example/generator/odp_generator.c | 81 +++ 1 file changed, 57 insertions(+), 24 deletions(-) diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c index 331f873..2d95ba8 100644 --- a/example/gene

[lng-odp] [PATCHv2 1/5] test: generator: compose sending packets from reference packet plus differences

2017-03-14 Thread Bogdan Pricope
Signed-off-by: Bogdan Pricope --- example/generator/odp_generator.c | 130 +- 1 file changed, 113 insertions(+), 17 deletions(-) diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c index 8062d87..331f873 100644 --- a/example/gen

[lng-odp] [PATCHv2 0/5] odp_generator upgrade

2017-03-14 Thread Bogdan Pricope
Improve performance of "odp_generator" example application. Bogdan Pricope (5): test: generator: compose sending packets from reference packet plus differences test: generator: send UDP packets in bursts test: generator: receive packets in bursts test: generator: use multiple RX queue

[lng-odp] [PATCH v2] test: bench_packet: add tests for reference functions

2017-03-14 Thread Matias Elo
Add microbenchmarks for the new packet reference functions. Signed-off-by: Matias Elo --- V2: - Use offset that is closer to real use cases test/common_plat/performance/odp_bench_packet.c | 86 + 1 file changed, 86 insertions(+) diff --git a/test/common_plat/performance