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 c03685af2895b20a5e8a046ea910254a96ab15c4 (commit)
from c6bf23e2794ec2a54fa1724cd9d833d84aa39270 (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 c03685af2895b20a5e8a046ea910254a96ab15c4
Author: Bill Fischofer <bill.fischofer(a)linaro.org>
Date: Mon Jul 4 21:31:45 2016 -0500
linux-generic: schedule: simplify wait logic to avoid clang issues
Resolve Bug https://bugs.linaro.org/show_bug.cgi?id=2387 by ensuring that
t1 variable is seen as initialized in all paths in the SP Scheduler.
Previous logic failed due to an apparent issue with clang.
Signed-off-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)nokia.com>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/odp_schedule_sp.c b/platform/linux-generic/odp_schedule_sp.c
index 8c45123..2e28aa4 100644
--- a/platform/linux-generic/odp_schedule_sp.c
+++ b/platform/linux-generic/odp_schedule_sp.c
@@ -364,9 +364,9 @@ static uint64_t schedule_wait_time(uint64_t ns)
}
static int schedule_multi(odp_queue_t *from, uint64_t wait,
- odp_event_t events[], int max_events)
+ odp_event_t events[], int max_events ODP_UNUSED)
{
- (void)max_events;
+ odp_time_t t1;
int update_t1 = 1;
if (sched_local.cmd) {
@@ -384,7 +384,6 @@ static int schedule_multi(odp_queue_t *from, uint64_t wait,
sched_cmd_t *cmd;
uint32_t qi;
int num;
- odp_time_t t1;
cmd = sched_cmd(NUM_PRIO);
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/odp_schedule_sp.c | 5 ++---
1 file changed, 2 insertions(+), 3 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 c6bf23e2794ec2a54fa1724cd9d833d84aa39270 (commit)
from 15f3c174f5a104e9749ed83797acb00660d675ad (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 c6bf23e2794ec2a54fa1724cd9d833d84aa39270
Author: Anders Roxell <anders.roxell(a)linaro.org>
Date: Thu Jun 30 22:12:34 2016 +0200
configure: split up libodphelper SO-version from libodp
The libodphelper and libopd need to track their evolving ABI
independently and so there needs to be two separate version numbers.
Signed-off-by: Anders Roxell <anders.roxell(a)linaro.org>
Tested-and-Reviewed-by: Mike Holmes <mike.holmes(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/configure.ac b/configure.ac
index f3952db..c0eb207 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,6 +15,9 @@ AM_SILENT_RULES([yes])
ODP_LIBSO_VERSION=110:0:1
AC_SUBST(ODP_LIBSO_VERSION)
+ODPHELPER_LIBSO_VERSION=110:0:1
+AC_SUBST(ODPHELPER_LIBSO_VERSION)
+
# Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
@@ -272,7 +275,8 @@ AC_OUTPUT
AC_MSG_RESULT([
$PACKAGE $VERSION
- Library version: ${ODP_LIBSO_VERSION}
+ ODP Library version: ${ODP_LIBSO_VERSION}
+ Helper Library version: ${ODPHELPER_LIBSO_VERSION}
implementation_name: ${IMPLEMENTATION_NAME}
ARCH_DIR ${ARCH_DIR}
diff --git a/helper/Makefile.am b/helper/Makefile.am
index aa58e8c..a82a11a 100644
--- a/helper/Makefile.am
+++ b/helper/Makefile.am
@@ -8,7 +8,7 @@ AM_CFLAGS = -I$(srcdir)/include
AM_CFLAGS += -I$(top_srcdir)/platform/@with_platform@/include
AM_CFLAGS += -I$(top_srcdir)/include
-AM_LDFLAGS += -version-number '$(ODP_LIBSO_VERSION)'
+AM_LDFLAGS += -version-number '$(ODPHELPER_LIBSO_VERSION)'
helperincludedir = $(includedir)/odp/helper/
helperinclude_HEADERS = \
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 6 +++++-
helper/Makefile.am | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--