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
--
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 52cfe7ba6d2541cf5ee464e46e91b2da5efe1497 (commit)
from 052d2687930e5a99568e9349ca9704ae507e8dc5 (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 | 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 052d2687930e5a99568e9349ca9704ae507e8dc5 (commit)
via 0ff7861b8a958b5e23adc5b13783aeeff0629e03 (commit)
from b4d17b1f6807cd980a1b2dd30573f17677ea371b (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:
configure.ac | 3 +-
platform/Makefile.inc | 19 ------
platform/linux-generic/Makefile.am | 43 ++++++++-----
.../arch/{arm => aarch64}/odp/api/cpu_arch.h | 0
.../odp_cpu_arch.c => aarch64/odp_global_time.c} | 45 --------------
.../linux-generic/arch/arm/odp_sysinfo_parse.c | 28 ---------
platform/linux-generic/arch/default/odp_cpu_arch.c | 28 ---------
.../linux-generic/arch/default/odp_cpu_cycles.c | 11 +++-
.../odp_cpu_arch.c => default/odp_global_time.c} | 28 ++-------
platform/linux-generic/arch/mips64/odp_cpu_arch.c | 25 --------
platform/linux-generic/arch/powerpc/odp_cpu_arch.c | 25 --------
.../linux-generic/arch/powerpc/odp_global_time.c | 15 +++++
platform/linux-generic/arch/x86/odp_cpu_arch.c | 72 ----------------------
.../arch/x86/{odp_cpu_arch.c => odp_global_time.c} | 34 ++--------
14 files changed, 62 insertions(+), 314 deletions(-)
copy platform/linux-generic/arch/{arm => aarch64}/odp/api/cpu_arch.h (100%)
rename platform/linux-generic/arch/{arm/odp_cpu_arch.c => aarch64/odp_global_time.c} (65%)
delete mode 100644 platform/linux-generic/arch/arm/odp_sysinfo_parse.c
copy test/common_plat/validation/api/classification/classification_main.c => platform/linux-generic/arch/default/odp_cpu_cycles.c (50%)
copy platform/linux-generic/arch/{mips64/odp_cpu_arch.c => default/odp_global_time.c} (53%)
create mode 100644 platform/linux-generic/arch/powerpc/odp_global_time.c
copy platform/linux-generic/arch/x86/{odp_cpu_arch.c => odp_global_time.c} (79%)
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 50cb30d14d432257f0a80da45b71bce2ddacad8d (commit)
via b4d17b1f6807cd980a1b2dd30573f17677ea371b (commit)
via f025da7131d921a4207b31bd5af4490da9b0ef24 (commit)
via fdc44dd4322f624c2a5d8c0be5306f7c45364520 (commit)
from e04e5f90df69e3031622b77fb5273b85d47eb966 (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 50cb30d14d432257f0a80da45b71bce2ddacad8d
Merge: e04e5f90 b4d17b1f
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Mon Oct 2 23:40:42 2017 +0300
Merge branch 'master' into api-next
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/_fdserver.c | 24 ++++++++++----------
.../linux-generic/include/odp_packet_internal.h | 3 ---
platform/linux-generic/odp_packet.c | 26 ----------------------
test/common_plat/m4/validation.m4 | 3 ++-
4 files changed, 14 insertions(+), 42 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 b4d17b1f6807cd980a1b2dd30573f17677ea371b (commit)
from f025da7131d921a4207b31bd5af4490da9b0ef24 (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 b4d17b1f6807cd980a1b2dd30573f17677ea371b
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Oct 2 05:58:00 2017 +0300
tests: fix validation tests being skipped by default
After [d091f2176a28 configure: "best effort" approach for CUnit and
validation tests] by default validation tests will get skipped by
default because test_vald variable will remain set to check instead of
yes. Update it to yes, if it was not set and CUnit was found.
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/test/common_plat/m4/validation.m4 b/test/common_plat/m4/validation.m4
index bf849aa3..f7127c06 100644
--- a/test/common_plat/m4/validation.m4
+++ b/test/common_plat/m4/validation.m4
@@ -23,7 +23,8 @@ AS_IF([test "x$test_vald" = "xyes" -a "x$cunit_support" = "xno"],
[AC_MSG_ERROR([Validation testsuite requested, but CUnit was not found])],
[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=no],
+ [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 | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--