[lng-odp] [API-NEXT] api: pktio: updates classification configuration documentation.

2016-09-14 Thread Balasubramanian Manoharan
From: Balasubramanian Manoharan Updates documentation for default CoS and pktin queue param configuration. Signed-off-by: Balasubramanian Manoharan --- include/odp/api/spec/packet_io.h | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/include/odp/api/spec/p

Re: [lng-odp] [RFC 1/2] api: classification: Add queue group to classification

2016-09-14 Thread Bala Manoharan
Regards, Bala On 15 September 2016 at 11:18, Radosław Biernacki wrote: > Hi > > I cannot find this patch either next nor api-next, so I assume that it was > not accepted yet. > > > 2016-04-25 14:31 GMT+02:00 Balasubramanian Manoharan > : >> >> Adds queue group to classification >> >> Signed-off-

Re: [lng-odp] [RFC 1/2] api: classification: Add queue group to classification

2016-09-14 Thread Radosław Biernacki
Hi I cannot find this patch either next nor api-next, so I assume that it was not accepted yet. 2016-04-25 14:31 GMT+02:00 Balasubramanian Manoharan < bala.manoha...@linaro.org>: > Adds queue group to classification > > Signed-off-by: Balasubramanian Manoharan > --- > include/odp/api/spec/cla

[lng-odp] [Bug 2510] ODP build system broken

2016-09-14 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=2510 Bill Fischofer changed: What|Removed |Added CC||bill.fischo...@linaro.org --- Comment #1 from

Re: [lng-odp] [PATCHv3] test: linux-gen: add pcap playback test

2016-09-14 Thread Anders Roxell
On 2016-09-12 19:54, Bill Fischofer wrote: > On Mon, Sep 12, 2016 at 10:24 AM, Mike Holmes > wrote: > > > On 12 September 2016 at 10:43, Maxim Uvarov > > wrote: > > > > > if no comments than it can be merged? > > > > > > Not without a review, I am interested in this capability but I have not > >

[lng-odp] [API-NEXT PATCHv2] api: odp_time_sub

2016-09-14 Thread Maxim Uvarov
Previously we had odp_time_sum but missing call to subtract some value from odp_time_t. Because on different platforms it can be implemented differently we need this call. Signed-off-by: Maxim Uvarov --- include/odp/api/spec/time.h | 10 ++ platform/linux-generic/odp_time.c | 17 ++

[lng-odp] [API-NEXT PATCH] api: odp_time_sub

2016-09-14 Thread Maxim Uvarov
Previously we had odp_time_sum but missing call to subtract some value from odp_time_t. Because on different platforms it can be implemented differently we need this call. Signed-off-by: Maxim Uvarov --- include/odp/api/spec/time.h | 10 ++ platform/linux-generic/odp_time

Re: [lng-odp] [buggyPATCH] linux-generic: add vlan insertion test

2016-09-14 Thread Maxim Uvarov
ping, there was question about autotools inside the patch. Can somebody replay please? Thank you, Maxim. On 07/05/16 11:01, Maxim Uvarov wrote: Use vlan tagged traffic for example validation test to add code coverage for pkt_mmap_vlan_insert() internal function. Signed-off-by: Maxim Uvarov -

Re: [lng-odp] [API-NEXT PATCHv2] linux-generic: _fdserver: allocating data table dynamicaly

2016-09-14 Thread Maxim Uvarov
Merged, Maxim. On 09/13/16 15:46, Christophe Milard wrote: Hi Bill, and thanks for your review/comments: I don't think that there any reason (at this time, at least) to worry about table alignment: The server is -hopefully- used only at non critical times (such as init...). It is based on socket

Re: [lng-odp] [API-NEXT PATCH] linux-generic: _fdserver: fixing comment typo

2016-09-14 Thread Maxim Uvarov
Merged, Maxim. On 09/13/16 14:24, Bill Fischofer wrote: On Tue, Sep 13, 2016 at 5:05 AM, Christophe Milard < christophe.mil...@linaro.org> wrote: Signed-off-by: Christophe Milard Reviewed-by: Bill Fischofer --- platform/linux-generic/_fdserver.c | 4 ++-- 1 file changed, 2 insertions

Re: [lng-odp] [PATCH] example: generator: actually use specified default

2016-09-14 Thread Maxim Uvarov
Merged, Maxim. On 09/14/16 05:50, Bill Fischofer wrote: On Tue, Sep 13, 2016 at 12:35 PM, Mike Holmes wrote: The help states default is 1000ms. 0 for flood mode, however the default was incorrectly set to zero. Signed-off-by: Mike Holmes Reviewed-by: Bill Fischofer --- example/gener

Re: [lng-odp] [PATCH] linux-gen: build: de-couple abi compatibility from shared lib

2016-09-14 Thread Savolainen, Petri (Nokia - FI/Espoo)
> > +ODP_ABI_COMPAT=0 > > +AC_ARG_ENABLE([abi-compat], > > +[ --enable-abi-compat build in ABI specification compatible > mode], > > +[if test "x$enableval" = "xyes"; then > > + ODP_ABI_COMPAT=1 > > + else > > + ODP_ABI_COMPAT=0 > > if we disable ABI compat mode I thin

[lng-odp] [PATCH v2] linux-gen: build: de-couple abi compatibility from shared lib

2016-09-14 Thread Petri Savolainen
Building ABI compatible or shared library are two different targets. A shared library may be used also without ABI compatibility. A new --enable-abi-compat configuration option is introduced. By default libraries are not built in ABI compat mode to enable function inlining. There is a noticeable pe

[lng-odp] [PATCH v2 1/2] test: perf: add new scheduling latency test

2016-09-14 Thread Matias Elo
Add new scheduling latency benchmark application. The application measures delays (avg, min, max) for high and low priority events. The test has a configurable number of TRAFFIC events and few SAMPLE events (one common or one per priority). The scheduling latency is only measured from the SAMPLE e

[lng-odp] [PATCH v2 2/2] test: sched_latency: add test script

2016-09-14 Thread Matias Elo
Signed-off-by: Matias Elo --- V2: - Exit on first failure (Maxim) test/common_plat/performance/Makefile.am | 1 + .../performance/odp_sched_latency_run.sh | 28 ++ 2 files changed, 29 insertions(+) create mode 100755 test/common_plat/performance/odp_sch