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 11fed684507a320fbb79dc86769c8f1755d0276f (commit)
from 6a360e61978d03d12dbfff8c34c20cf95170a1c3 (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 11fed684507a320fbb79dc86769c8f1755d0276f
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Aug 28 15:55:34 2017 +0300
helper: move include files to helper/include
Repair build with --enable-helper-linux option.
https://bugs.linaro.org/show_bug.cgi?id=3216
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/helper/Makefile.am b/helper/Makefile.am
index 2c5452dc..c69fd678 100644
--- a/helper/Makefile.am
+++ b/helper/Makefile.am
@@ -42,8 +42,8 @@ helperlinuxinclude_HEADERS = \
endif
noinst_HEADERS = \
- $(srcdir)/odph_debug.h \
- $(srcdir)/odph_list_internal.h
+ $(srcdir)/include/odph_debug.h \
+ $(srcdir)/include/odph_list_internal.h
__LIB__libodphelper_la_SOURCES = \
eth.c \
diff --git a/helper/odph_debug.h b/helper/include/odph_debug.h
similarity index 100%
rename from helper/odph_debug.h
rename to helper/include/odph_debug.h
diff --git a/helper/odph_list_internal.h b/helper/include/odph_list_internal.h
similarity index 100%
rename from helper/odph_list_internal.h
rename to helper/include/odph_list_internal.h
-----------------------------------------------------------------------
Summary of changes:
helper/Makefile.am | 4 ++--
helper/{ => include}/odph_debug.h | 0
helper/{ => include}/odph_list_internal.h | 0
3 files changed, 2 insertions(+), 2 deletions(-)
rename helper/{ => include}/odph_debug.h (100%)
rename helper/{ => include}/odph_list_internal.h (100%)
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 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
--