This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 3bacbfd55edf76b897a4b2e5c62b59ca6fa95331 (commit)
from 37b430cb9e8f6834a3c76ab108489cec719b9e32 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3bacbfd55edf76b897a4b2e5c62b59ca6fa95331
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Oct 2 05:58:00 2017 +0300
tests: fix disabling of validation tests
Fix for the fix...
[b4d17b1f6807 tests: fix validation tests being skipped by default]
attempted to fix tests being disabled by default, but in attempt to do
so just forced them to be enabled even if they are forcibly disabled by
configure option. Update conditions to really enable testsuite if it was
not disabled.
https://bugs.linaro.org/show_bug.cgi?id=3300
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/test/common_plat/m4/validation.m4 b/test/common_plat/m4/validation.m4
index f7127c06..65ba2aa2 100644
--- a/test/common_plat/m4/validation.m4
+++ b/test/common_plat/m4/validation.m4
@@ -24,7 +24,7 @@ AS_IF([test "x$test_vald" = "xyes" -a "x$cunit_support" = "xno"],
[test "x$test_vald" = "xcheck" -a "x$cunit_support" = "xno"],
[AC_MSG_WARN([CUnit was not found, disabling validation testsuite])
test_vald=no],
- [test_vald=yes])
+ [test "x$test_vald" != "xno"], [test_vald=yes])
AM_CONDITIONAL([cunit_support], [test "x$cunit_support" = "xyes"])
AM_CONDITIONAL([test_vald], [test "x$test_vald" = "xyes"])
-----------------------------------------------------------------------
Summary of changes:
test/common_plat/m4/validation.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 37b430cb9e8f6834a3c76ab108489cec719b9e32 (commit)
via 4d38a376cd9976dfbeb565e509c028d07dfb1ed8 (commit)
from c16af6486eea240609f334b1bdc81a11404275de (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 37b430cb9e8f6834a3c76ab108489cec719b9e32
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Mon Oct 9 14:34:10 2017 +0300
example: classifier: enable classifier in input queue parameters
Enable packet classifier following the latest API spec.
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/example/classifier/odp_classifier.c b/example/classifier/odp_classifier.c
index d67fe5ac..691eb196 100644
--- a/example/classifier/odp_classifier.c
+++ b/example/classifier/odp_classifier.c
@@ -229,6 +229,7 @@ static odp_pktio_t create_pktio(const char *dev, odp_pool_t pool)
odp_pktin_queue_param_init(&pktin_param);
pktin_param.queue_param.sched.sync = ODP_SCHED_SYNC_ATOMIC;
+ pktin_param.classifier_enable = 1;
if (odp_pktin_queue_config(pktio, &pktin_param)) {
EXAMPLE_ERR("pktin queue config failed for %s\n", dev);
commit 4d38a376cd9976dfbeb565e509c028d07dfb1ed8
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Wed May 31 10:55:05 2017 +0300
validation: packet: remove old unused define
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/test/common_plat/validation/api/packet/packet.c b/test/common_plat/validation/api/packet/packet.c
index 10e011df..64165464 100644
--- a/test/common_plat/validation/api/packet/packet.c
+++ b/test/common_plat/validation/api/packet/packet.c
@@ -12,7 +12,6 @@
#include <odp_cunit_common.h>
#include "packet.h"
-#define PACKET_BUF_LEN ODP_CONFIG_PACKET_SEG_LEN_MIN
/* Reserve some tailroom for tests */
#define PACKET_TAILROOM_RESERVE 4
/* Number of packets in the test packet pool */
-----------------------------------------------------------------------
Summary of changes:
example/classifier/odp_classifier.c | 1 +
test/common_plat/validation/api/packet/packet.c | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via c16af6486eea240609f334b1bdc81a11404275de (commit)
from 3cb452014694b6a20ab2896370a90b4fbded7512 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c16af6486eea240609f334b1bdc81a11404275de
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Fri Oct 6 09:21:22 2017 +0300
travis: purge dpdk cache on version change
changing dpdk version and not clearing build can lead
to reference to old cached not supported dpdk version.
Needed to remove cache if version was changed.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index 99057920..7fcd98e2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -149,11 +149,17 @@ install:
fi
- gem install asciidoctor
-# DPDK pktio. Note that cache must be purged if dpdk version changes.
+ # DPDK pktio. Note that cache must be purged if dpdk version changes.
+ - DPDK_VERS="17.02"
+ - |
+ CACHED_DPDK_VERS=`fgrep Version dpdk/pkg/dpdk.spec | cut -d " " -f 2`
+ if [ "${CACHED_DPDK_VERS}" != "${DPDK_VERS}" ]; then
+ rm -rf dpdk
+ fi
- TARGET=${TARGET:-"x86_64-native-linuxapp-gcc"}
- |
if [ -z "$CROSS_ARCH" -a ! -f "dpdk/${TARGET}/lib/libdpdk.a" ]; then
- git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v17.02 http://dpdk.org/git/dpdk dpdk
+ git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v${DPDK_VERS} http://dpdk.org/git/dpdk dpdk
pushd dpdk
git log --oneline --decorate
make config T=${TARGET} O=${TARGET}
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 3cb452014694b6a20ab2896370a90b4fbded7512 (commit)
via 73bc46197ec0617878034ac793dcc96ed41eb9a1 (commit)
from a63f25ff2994b2df78c24f1f8b63d0e06628eb68 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, api-next has been updated
via bf803098eb1518dfb9e719071256fe22700b8c72 (commit)
via 3cb452014694b6a20ab2896370a90b4fbded7512 (commit)
via 73bc46197ec0617878034ac793dcc96ed41eb9a1 (commit)
from a2e288f35da1f3838f0650157932a93091e6c3f4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit bf803098eb1518dfb9e719071256fe22700b8c72
Merge: a2e288f3 3cb45201
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Sat Oct 7 00:31:24 2017 +0300
Merge branch 'master' into api-next
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via a63f25ff2994b2df78c24f1f8b63d0e06628eb68 (commit)
from 34884aa91524c4329e4ea1a9b312538d8f7dd187 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a63f25ff2994b2df78c24f1f8b63d0e06628eb68
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Thu Oct 5 20:36:20 2017 +0300
travis: fix netmap module loading
Travis script will insmod netmap.ko only it was rebuilt during this
session, which is wrong. Split the ifs, so that module loading does not
depend on the cache contents.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index 5069ddff..88cc3f4e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -167,13 +167,15 @@ install:
# Netmap pktio
- |
- if [ -z "$CROSS_ARCH" -a ! -f "netmap/LINUX/netmap.ko" ]; then
- git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v11.2 https://github.com/luigirizzo/netmap.git
- pushd netmap/LINUX
- ./configure
- make
- sudo insmod ./netmap.ko
- popd
+ if [ -z "$CROSS_ARCH" ]; then
+ if [ ! -f "netmap/LINUX/netmap.ko" ]; then
+ git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v11.2 https://github.com/luigirizzo/netmap.git
+ pushd netmap/LINUX
+ ./configure
+ make
+ popd
+ fi
+ sudo insmod ./netmap/LINUX/netmap.ko
fi
script:
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, api-next has been updated
via d74515dcb08a8f15ffee5fca621bd8dc1742a9f5 (commit)
via 24bf1003e1fbf6ca4003c31a79dfe5ddc40e38d9 (commit)
from 506bf9dcf0e071cd8b168806b1d279124551af86 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d74515dcb08a8f15ffee5fca621bd8dc1742a9f5
Author: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Date: Wed Oct 4 12:02:55 2017 +0200
linux-gen: fixing typos
Signed-off-by: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/doc/platform_specific.dox b/platform/linux-generic/doc/platform_specific.dox
index e116ec61..41ad53f4 100644
--- a/platform/linux-generic/doc/platform_specific.dox
+++ b/platform/linux-generic/doc/platform_specific.dox
@@ -28,7 +28,7 @@
* to odp_init_local() is actually fully defined by these
* requirements: It has to be the value returned by the
* unique call to odp_init_global() made by one single
- * acsendant of the current process.
+ * ancestor of the current process.
*/
/**
diff --git a/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h b/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
index f47a13f6..be3926d4 100644
--- a/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
+++ b/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
@@ -56,7 +56,7 @@ extern "C" {
#define ODP_TM_MAX_SCHED_WEIGHT 255
/** The ODP_TM_MAX_TM_QUEUES constant is the largest number of tm_queues
- * that can handled by any one TM system.
+ * that can be handled by any one TM system.
*/
#define ODP_TM_MAX_TM_QUEUES (16 * 1024 * 1024)
commit 24bf1003e1fbf6ca4003c31a79dfe5ddc40e38d9
Author: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Date: Wed Oct 4 12:02:55 2017 +0200
api: fixing typos
Signed-off-by: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/include/odp/api/spec/packet.h b/include/odp/api/spec/packet.h
index c498e2e2..c705c3a6 100644
--- a/include/odp/api/spec/packet.h
+++ b/include/odp/api/spec/packet.h
@@ -920,7 +920,7 @@ odp_packet_t odp_packet_ref_static(odp_packet_t pkt);
* dynamic references must not be mixed. Results are undefined if these
* restrictions are not observed.
*
- * The packet handle 'pkt' may itself by a (dynamic) reference to a packet.
+ * The packet handle 'pkt' may itself be a (dynamic) reference to a packet.
*
* If the caller does not intend to modify either the packet or the new
* reference to it, odp_packet_ref_static() may be used to create
@@ -947,7 +947,7 @@ odp_packet_t odp_packet_ref(odp_packet_t pkt, uint32_t offset);
* packet consists metadata and data of the 'hdr' packet, followed by the
* shared part of packet 'pkt'.
*
- * The packet handle ('pkt') may itself by a (dynamic) reference to a packet,
+ * The packet handle ('pkt') may itself be a (dynamic) reference to a packet,
* but the header packet handle ('hdr') must be unique. Both packets must be
* have been allocated from the same pool and the handles must not refer to
* the same packet. Results are undefined if these restrictions are not
diff --git a/include/odp/api/spec/traffic_mngr.h b/include/odp/api/spec/traffic_mngr.h
index 3a748cef..c9134e8e 100644
--- a/include/odp/api/spec/traffic_mngr.h
+++ b/include/odp/api/spec/traffic_mngr.h
@@ -75,7 +75,7 @@ extern "C" {
/**
* @def ODP_TM_MAX_TM_QUEUES
- * The largest number of tm_queues that can handled by any one TM system.
+ * The largest number of tm_queues that can be handled by any one TM system.
*/
/**
@@ -97,7 +97,7 @@ extern "C" {
/**
* @def ODP_TM_MIN_SHAPER_BW
- * The largest amount of bandwidth that any shaper's peak or commit rate can
+ * The lowest amount of bandwidth that any shaper's peak or commit rate can
* be set to. It is in units of 1000 bytes/second.
*/
@@ -143,7 +143,7 @@ extern "C" {
/**
* @typedef odp_tm_node_t
- * Each odp_tm_queue_t value is an opaque ODP handle representing a specific
+ * Each odp_tm_node_t value is an opaque ODP handle representing a specific
* tm node within a specific TM system.
*/
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/packet.h | 4 ++--
include/odp/api/spec/traffic_mngr.h | 6 +++---
platform/linux-generic/doc/platform_specific.dox | 2 +-
platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 34884aa91524c4329e4ea1a9b312538d8f7dd187 (commit)
from 52cfe7ba6d2541cf5ee464e46e91b2da5efe1497 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 34884aa91524c4329e4ea1a9b312538d8f7dd187
Author: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Date: Wed Oct 4 12:02:55 2017 +0200
linux-gen: fixing typos
Signed-off-by: Mykyta Iziumtsev <mykyta.iziumtsev(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/doc/platform_specific.dox b/platform/linux-generic/doc/platform_specific.dox
index e116ec61..41ad53f4 100644
--- a/platform/linux-generic/doc/platform_specific.dox
+++ b/platform/linux-generic/doc/platform_specific.dox
@@ -28,7 +28,7 @@
* to odp_init_local() is actually fully defined by these
* requirements: It has to be the value returned by the
* unique call to odp_init_global() made by one single
- * acsendant of the current process.
+ * ancestor of the current process.
*/
/**
diff --git a/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h b/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
index f47a13f6..be3926d4 100644
--- a/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
+++ b/platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h
@@ -56,7 +56,7 @@ extern "C" {
#define ODP_TM_MAX_SCHED_WEIGHT 255
/** The ODP_TM_MAX_TM_QUEUES constant is the largest number of tm_queues
- * that can handled by any one TM system.
+ * that can be handled by any one TM system.
*/
#define ODP_TM_MAX_TM_QUEUES (16 * 1024 * 1024)
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/doc/platform_specific.dox | 2 +-
platform/linux-generic/include/odp/api/plat/traffic_mngr_types.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--