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, packet-diagram-fix has been created
at 4537d096721a753086592ed5a989beab5647bcfa (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
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 b4cd6c50f9f0c2e1fa975b768253d4f4b35fad07 (commit)
from e65248393a0d7263a26e4e8e4f64ac12c7142c54 (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 b4cd6c50f9f0c2e1fa975b768253d4f4b35fad07
Author: Balasubramanian Manoharan <bala.manoharan(a)linaro.org>
Date: Wed Aug 2 08:40:38 2017 -0700
api: packetio: deprecate redundant loop_supported field in capability
removes redundant loop_supported boolean in odp_pktio_capability_t
Fixes https://bugs.linaro.org/show_bug.cgi?id=2861
Signed-off-by: Balasubramanian Manoharan <bala.manoharan(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
diff --git a/include/odp/api/spec/packet_io.h b/include/odp/api/spec/packet_io.h
index 88020892..d42cebf0 100644
--- a/include/odp/api/spec/packet_io.h
+++ b/include/odp/api/spec/packet_io.h
@@ -19,6 +19,7 @@
extern "C" {
#endif
+#include <odp/api/deprecated.h>
#include <odp/api/packet_io_stats.h>
#include <odp/api/queue.h>
#include <odp/api/time.h>
@@ -477,11 +478,8 @@ typedef struct odp_pktio_capability_t {
* set to zero. */
odp_pktio_set_op_t set_op;
- /** Support of Loopback mode
- *
- * A boolean to denote whether loop back mode is supported on this
- * specific interface. */
- odp_bool_t loop_supported;
+ /** @deprecated Use enable_loop inside odp_pktin_config_t */
+ odp_bool_t ODP_DEPRECATE(loop_supported);
} odp_pktio_capability_t;
/**
diff --git a/platform/linux-generic/odp_packet_io.c b/platform/linux-generic/odp_packet_io.c
index 64c6e452..94075567 100644
--- a/platform/linux-generic/odp_packet_io.c
+++ b/platform/linux-generic/odp_packet_io.c
@@ -416,7 +416,7 @@ int odp_pktio_config(odp_pktio_t hdl, const odp_pktio_config_t *config)
return -1;
}
- if (config->enable_loop && !capa.loop_supported) {
+ if (config->enable_loop && !capa.config.enable_loop) {
ODP_ERR("Loopback mode not supported\n");
return -1;
}
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/packet_io.h | 8 +++-----
platform/linux-generic/odp_packet_io.c | 2 +-
2 files changed, 4 insertions(+), 6 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, api-next has been updated
via e65248393a0d7263a26e4e8e4f64ac12c7142c54 (commit)
via 4537d096721a753086592ed5a989beab5647bcfa (commit)
via 93cbd8caf4ab5ccf22c092d42df4028969ed8a7b (commit)
via 2050915d34995f4be695a88dd99e9275f346733b (commit)
via ded0918391865956e3b00df3c43e4311a7285d4b (commit)
via a2040db93b114fb9e1da9aeca1d0a1ea91699448 (commit)
from 999042e51837a7ed8c7fb616f75707349515fc3d (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 e65248393a0d7263a26e4e8e4f64ac12c7142c54
Merge: 999042e5 4537d096
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Wed Aug 2 22:22:09 2017 +0300
Merge branch 'master' into api-next
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 82 ++++++++++++++++++++-----------------
platform/linux-generic/odp_crypto.c | 4 ++
2 files changed, 49 insertions(+), 37 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 4537d096721a753086592ed5a989beab5647bcfa (commit)
from 93cbd8caf4ab5ccf22c092d42df4028969ed8a7b (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 -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 6 +++---
1 file changed, 3 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, api-next has been updated
via 999042e51837a7ed8c7fb616f75707349515fc3d (commit)
from aaceddaf56175ee207fcbf9c241a7839bdea091b (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 999042e51837a7ed8c7fb616f75707349515fc3d
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Jul 31 23:01:04 2017 +0300
linux-gen: timer: set sigev_value in timer_res_init
Even if signal is never to be delivered, it is still required to set
sigev_value in sigevent structure.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(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/platform/linux-generic/odp_timer.c b/platform/linux-generic/odp_timer.c
index 9fc0675d..fdb48902 100644
--- a/platform/linux-generic/odp_timer.c
+++ b/platform/linux-generic/odp_timer.c
@@ -844,6 +844,7 @@ static int timer_res_init(void)
sigev.sigev_notify = SIGEV_THREAD_ID;
sigev._sigev_un._tid = (pid_t)syscall(SYS_gettid);
+ sigev.sigev_value.sival_ptr = NULL;
sigev.sigev_signo = SIGUSR1;
/* Create timer */
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/odp_timer.c | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--