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 annotated tag, v1.11.0.1_monarch has been created
at a25e467e803a73d3a9ba10656c468abbf78e327e (tag)
tagging 0e9e5654cf04c6f92a3539fec06f6cf51a86168d (commit)
replaces v1.11.0.0_monarch
tagged by Maxim Uvarov
on Thu Aug 24 18:48:04 2017 +0300
- Log -----------------------------------------------------------------
Monarch Long Term Stable v1.11.0.1
Balasubramanian Manoharan (3):
linux-generic: pktio: update classifier enable boolean
linux-generic: classification: update classifier enable boolean
validation: classification: add test case for classifier enable boolean
Bill Fischofer (2):
bug: linux-generic: add syntax to allow newer clang to compile odp
changelog: document changes for v1.11.0.1 service release
Brian Brooks (3):
build: GCC 7 fixes
pktio: GCC 7 fixes
build: fix 64-bit atomics detection
Dmitry Eremin-Solenikov (1):
linux-gen: fix compilation with OpenSSL 1.1.y
Matias Elo (2):
linux-gen: socket: remove limits for maximum RX/TX burst size
linux-gen: pktio: fix valgrind warnings
Maxim Uvarov (7):
configure: remove dependency of autoconf-archive
configure.ac: do not trap if libatomic is not found
test: skip pktio_perf tests on 1 and 2 cpus machines
travis: port travis checks from master
linux-gen: port fix out of tree build commits
changelog: mention cls enable bit test case
configure.ac: inc library version
Mike Holmes (2):
configure.ac: fix builds from raw git tar
configure: the version cannot use a script
Nicolas Morey-Chaisemartin (4):
git_hash: handle git worktree
validation: pktio: use PRIu32 to print uint32_t values
validation: traffic_mngr: use PRI macro to print uint*
example: traffic_mgmt: use PRIu32 instead of %u
-----------------------------------------------------------------------
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, monarch_lts has been updated
via 0e9e5654cf04c6f92a3539fec06f6cf51a86168d (commit)
from acdfeede179f16d47ff6c78fc69d74aea71f9928 (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 0e9e5654cf04c6f92a3539fec06f6cf51a86168d
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Wed Aug 23 22:34:45 2017 +0300
configure.ac: inc library version
only source code was changed to inc only middle number.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/configure.ac b/configure.ac
index efb9f7ed..440ea15e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ AM_SILENT_RULES([yes])
##########################################################################
# Set correct platform library version
##########################################################################
-ODP_LIBSO_VERSION=111:0:0
+ODP_LIBSO_VERSION=111:1:0
AC_SUBST(ODP_LIBSO_VERSION)
ODPHELPER_LIBSO_VERSION=110:0:1
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 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 8705e548f330d23173283fcca62f4afb835a6380 (commit)
from eafd83ed1d036a404a18874d80c11d454d2580d3 (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 8705e548f330d23173283fcca62f4afb835a6380
Author: Matias Elo <matias.elo(a)nokia.com>
Date: Fri Aug 18 10:08:17 2017 +0300
helper: test: fix running process/thread tests on single core systems
This patch enables running process and thread validation tests on single
core systems.
Fixes bug: https://bugs.linaro.org/show_bug.cgi?id=2812
Signed-off-by: Matias Elo <matias.elo(a)nokia.com>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/helper/test/linux/process.c b/helper/test/linux/process.c
index e08ef868..e1ab8c83 100644
--- a/helper/test/linux/process.c
+++ b/helper/test/linux/process.c
@@ -56,9 +56,10 @@ int main(int argc ODPH_UNUSED, char *argv[] ODPH_UNUSED)
cpu = odp_cpumask_first(&cpu_mask);
printf("the first CPU: %i\n", cpu);
- /* reserve cpu 0 for the control plane so remove it from
- * the default mask */
- odp_cpumask_clr(&cpu_mask, 0);
+ /* If possible, remove CPU 0 from the default mask to reserve it for the
+ * control plane. */
+ if (num_workers > 1)
+ odp_cpumask_clr(&cpu_mask, 0);
num_workers = odp_cpumask_count(&cpu_mask);
(void)odp_cpumask_to_str(&cpu_mask, cpumaskstr, sizeof(cpumaskstr));
printf("new cpu mask: %s\n", cpumaskstr);
diff --git a/helper/test/linux/pthread.c b/helper/test/linux/pthread.c
index 2bec0d17..3422751f 100644
--- a/helper/test/linux/pthread.c
+++ b/helper/test/linux/pthread.c
@@ -56,9 +56,10 @@ int main(int argc ODPH_UNUSED, char *argv[] ODPH_UNUSED)
cpu = odp_cpumask_first(&cpu_mask);
printf("the first CPU: %i\n", cpu);
- /* reserve cpu 0 for the control plane so remove it from
- * the default mask */
- odp_cpumask_clr(&cpu_mask, 0);
+ /* If possible, remove CPU 0 from the default mask to reserve it for the
+ * control plane. */
+ if (num_workers > 1)
+ odp_cpumask_clr(&cpu_mask, 0);
num_workers = odp_cpumask_count(&cpu_mask);
(void)odp_cpumask_to_str(&cpu_mask, cpumaskstr, sizeof(cpumaskstr));
printf("new cpu mask: %s\n", cpumaskstr);
diff --git a/helper/test/odpthreads.c b/helper/test/odpthreads.c
index 219e1b65..ab890cb3 100644
--- a/helper/test/odpthreads.c
+++ b/helper/test/odpthreads.c
@@ -126,9 +126,10 @@ int main(int argc, char *argv[])
cpu = odp_cpumask_first(&cpu_mask);
printf("the first CPU: %i\n", cpu);
- /* reserve cpu 0 for the control plane so remove it from
- * the default mask */
- odp_cpumask_clr(&cpu_mask, 0);
+ /* If possible, remove CPU 0 from the default mask to reserve it for the
+ * control plane. */
+ if (num_workers > 1)
+ odp_cpumask_clr(&cpu_mask, 0);
num_workers = odp_cpumask_count(&cpu_mask);
(void)odp_cpumask_to_str(&cpu_mask, cpumaskstr, sizeof(cpumaskstr));
printf("new cpu mask: %s\n", cpumaskstr);
-----------------------------------------------------------------------
Summary of changes:
helper/test/linux/process.c | 7 ++++---
helper/test/linux/pthread.c | 7 ++++---
helper/test/odpthreads.c | 7 ++++---
3 files changed, 12 insertions(+), 9 deletions(-)
hooks/post-receive
--