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 744d466a0fe5530bb6c036664413d799a3aeb871 (commit)
from 4eb5acde3012effceaaf9af4318d95b02551fffa (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 744d466a0fe5530bb6c036664413d799a3aeb871
Author: Brian Brooks <brian.brooks(a)linaro.org>
Date: Thu May 24 15:39:03 2018 -0500
linux-generic: schedule: call timer_run() in scalable scheduler
Signed-off-by: Brian Brooks <brian.brooks(a)linaro.org>
Reported-by: David Nyström <david.c.nystrom(a)gmail.com>
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/odp_schedule_scalable.c b/platform/linux-generic/odp_schedule_scalable.c
index f26a7e59..1dbcb529 100644
--- a/platform/linux-generic/odp_schedule_scalable.c
+++ b/platform/linux-generic/odp_schedule_scalable.c
@@ -31,6 +31,7 @@
#include <odp_schedule_if.h>
#include <odp_bitset.h>
#include <odp_packet_io_internal.h>
+#include <odp_timer_internal.h>
#include <limits.h>
#include <stdbool.h>
@@ -889,6 +890,8 @@ static int _schedule(odp_queue_t *from, odp_event_t ev[], int num_evts)
ts = sched_ts;
atomq = ts->atomq;
+ timer_run();
+
/* Once an atomic queue has been scheduled to a thread, it will stay
* on that thread until empty or 'rotated' by WRR
*/
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/odp_schedule_scalable.c | 3 +++
1 file changed, 3 insertions(+)
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 40699694b24cceb86ed441308309393de84c3478 (commit)
from 215069d156f3612ff9e140a7e47232047c6870e6 (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 40699694b24cceb86ed441308309393de84c3478
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Fri May 18 13:43:12 2018 +0300
codecov: disable check by patch
Inside PRs there is check for code coverage for patch lines.
There is no big reason for that check due to patch also can
only remove lines. Only complete project has to be checked
for code coverage.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/.codecov.yml b/.codecov.yml
index 327f6549..1e50776b 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -14,9 +14,7 @@ coverage:
threshold: 5%
patch:
default:
- enabled: yes
- target: 70%
- threshold: 5%
+ enabled: no
changes: no
parsers:
-----------------------------------------------------------------------
Summary of changes:
.codecov.yml | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
hooks/post-receive
--