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 5a2ed3eefb1a263139282c376741adb2c355bd5a (commit)
from 2541e8688750f2a045aff3dbf544868be3ebf787 (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 5a2ed3eefb1a263139282c376741adb2c355bd5a
Author: Nikhil Agarwal <nikhil.agarwal(a)linaro.org>
Date: Wed Jun 28 11:41:50 2017 +0530
test:queue:update order queue test for locks.
Order queue test should reserve ordered locks only if
ordered locks count is more than 1.
Signed-off-by: Nikhil Agarwal <nikhil.agarwal(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/validation/api/queue/queue.c b/test/common_plat/validation/api/queue/queue.c
index 6a13c006..f08d811f 100644
--- a/test/common_plat/validation/api/queue/queue.c
+++ b/test/common_plat/validation/api/queue/queue.c
@@ -262,6 +262,7 @@ void queue_test_info(void)
const char *const nq_order = "test_q_order";
odp_queue_info_t info;
odp_queue_param_t param;
+ odp_queue_capability_t capability;
char q_plain_ctx[] = "test_q_plain context data";
char q_order_ctx[] = "test_q_order context data";
unsigned lock_count;
@@ -274,13 +275,18 @@ void queue_test_info(void)
CU_ASSERT(odp_queue_context_set(q_plain, q_plain_ctx,
sizeof(q_plain_ctx)) == 0);
+ memset(&capability, 0, sizeof(odp_queue_capability_t));
+ CU_ASSERT(odp_queue_capability(&capability) == 0);
/* Create a scheduled ordered queue with explicitly set params */
odp_queue_param_init(¶m);
param.type = ODP_QUEUE_TYPE_SCHED;
param.sched.prio = ODP_SCHED_PRIO_NORMAL;
param.sched.sync = ODP_SCHED_SYNC_ORDERED;
param.sched.group = ODP_SCHED_GROUP_ALL;
- param.sched.lock_count = 1;
+ if (capability.max_ordered_locks)
+ param.sched.lock_count = 1;
+ else
+ param.sched.lock_count = 0;
param.context = q_order_ctx;
q_order = odp_queue_create(nq_order, ¶m);
CU_ASSERT(ODP_QUEUE_INVALID != q_order);
-----------------------------------------------------------------------
Summary of changes:
test/common_plat/validation/api/queue/queue.c | 8 +++++++-
1 file changed, 7 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 15c97427d01c81dc9f4d0aafe9b0a99cdb2d1fc6 (commit)
from 00a21c6dce65a30c8250db59a42a43c658e8ca1b (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 15c97427d01c81dc9f4d0aafe9b0a99cdb2d1fc6
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Thu Jun 29 13:34:24 2017 +0300
linux-gen: fix out-of-tree build
Drop include/odp/api/spec/deprecated.h from headers list incorrectly
added by merge a5ef33a6f2575cd011cb05c3fb1b06d1c017f879.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/Makefile.inc b/platform/Makefile.inc
index 24f06914..92be6a73 100644
--- a/platform/Makefile.inc
+++ b/platform/Makefile.inc
@@ -29,7 +29,6 @@ odpapispecinclude_HEADERS = \
$(top_srcdir)/include/odp/api/spec/cpumask.h \
$(top_srcdir)/include/odp/api/spec/crypto.h \
$(top_srcdir)/include/odp/api/spec/debug.h \
- $(top_srcdir)/include/odp/api/spec/deprecated.h \
$(top_srcdir)/include/odp/api/spec/errno.h \
$(top_srcdir)/include/odp/api/spec/event.h \
$(top_srcdir)/include/odp/api/spec/feature.h \
-----------------------------------------------------------------------
Summary of changes:
platform/Makefile.inc | 1 -
1 file changed, 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, monarch_lts has been updated
via 0c15c40db40834f1df217191c4b6a06303ab0872 (commit)
from 0fcec77081fd1df2f862419b42014bbf700d9c32 (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 0c15c40db40834f1df217191c4b6a06303ab0872
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Jul 3 17:08:33 2017 +0300
linux-gen: fix compilation with OpenSSL 1.1.y
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/platform/linux-generic/include/odp_crypto_internal.h b/platform/linux-generic/include/odp_crypto_internal.h
index 7b104afa..47ace2f3 100644
--- a/platform/linux-generic/include/odp_crypto_internal.h
+++ b/platform/linux-generic/include/odp_crypto_internal.h
@@ -13,6 +13,7 @@ extern "C" {
#include <openssl/des.h>
#include <openssl/aes.h>
+#include <openssl/evp.h>
#define OP_RESULT_MAGIC 0x91919191
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/include/odp_crypto_internal.h | 1 +
1 file changed, 1 insertion(+)
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 5551c0d76bd721110a0fa4ba1423fe1edb0fd530 (commit)
via 9b78da8e2373ab0530cfbbd72b2229059b57ddf1 (commit)
via 689145bcef5ada4304f1d97d6b72e10bf8308ac0 (commit)
via c6a309f00f882fabe70fa535ebe8b765f6e9bd11 (commit)
via a4add29291572219143dc667db4e8a7832a5692b (commit)
via 497c339f94e35d5fadeff539cebfbf44d698dc7e (commit)
via fdd3df3547c78d81d1244eac3fa65512e9023237 (commit)
via e5b211403233dda67507f18fd91f9826022fd287 (commit)
via d232db102fc77e6cb2fd9d62ba387c22f68c042a (commit)
from e2169ff2026af51eec351cd679891c303ab651e0 (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 5551c0d76bd721110a0fa4ba1423fe1edb0fd530
Merge: e2169ff2 9b78da8e
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Wed Jun 28 23:01:24 2017 +0300
Merge branch 'master' into api-next
diff --cc .travis.yml
index 89f028d1,bae23600..f74c564f
--- a/.travis.yml
+++ b/.travis.yml
@@@ -42,9 -42,8 +42,9 @@@ addons
packages:
- gcc
- clang-3.8
- - automake autoconf autoconf-archive libtool libssl-dev graphviz mscgen doxygen
+ - automake autoconf libtool libssl-dev graphviz mscgen doxygen
- libpcap-dev
+ - libconfig-dev
# coverity_scan:
# project:
# name: "$TRAVIS_REPO_SLUG"
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 4 +-
DEPENDENCIES | 5 +-
Makefile.am | 9 ++-
m4/ax_check_compile_flag.m4 | 72 ++++++++++++++++++++++
platform/linux-generic/m4/configure.m4 | 5 +-
platform/linux-generic/odp_crypto.c | 43 ++++++++++---
platform/linux-generic/odp_time.c | 4 +-
test/common_plat/validation/api/time/Makefile.am | 1 +
.../validation/api/traffic_mngr/Makefile.am | 3 +-
9 files changed, 123 insertions(+), 23 deletions(-)
create mode 100644 m4/ax_check_compile_flag.m4
hooks/post-receive
--