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, caterpillar has been updated
via 5251bda54b51d3754aaf8c988aa959b48b4d25f9 (commit)
from 993e0cf7d033d25eac5113462b66c66a5bb6b737 (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 5251bda54b51d3754aaf8c988aa959b48b4d25f9
Author: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Date: Fri Jan 26 14:30:21 2018 +0100
odp_crypto (dpdk): RAND_pseudo_bytes is deprecated
Signed-off-by: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Yi He <yi.he(a)linaro.org>
diff --git a/platform/linux-dpdk/odp_crypto.c b/platform/linux-dpdk/odp_crypto.c
index 6bffa112..354c715c 100644
--- a/platform/linux-dpdk/odp_crypto.c
+++ b/platform/linux-dpdk/odp_crypto.c
@@ -1134,9 +1134,6 @@ int32_t odp_random_data(uint8_t *buf, uint32_t len, odp_random_kind_t kind)
switch (kind) {
case ODP_RANDOM_BASIC:
- RAND_pseudo_bytes(buf, len);
- return len;
-
case ODP_RANDOM_CRYPTO:
rc = RAND_bytes(buf, len);
return (1 == rc) ? (int)len /*success*/: -1 /*failure*/;
-----------------------------------------------------------------------
Summary of changes:
platform/linux-dpdk/odp_crypto.c | 3 ---
1 file changed, 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 6be7adab1a16a62e871bc4ed4f3c926645b2ecd0 (commit)
from f7e4949e65f29f043115df1a171e0e49a4830ef6 (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 6be7adab1a16a62e871bc4ed4f3c926645b2ecd0
Author: Petri Savolainen <petri.savolainen(a)linaro.org>
Date: Tue Jan 23 12:53:10 2018 +0200
linux-gen: test: update gitignore
Add all .env files into gitignore.
Signed-off-by: Petri Savolainen <petri.savolainen(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/test/.gitignore b/platform/linux-generic/test/.gitignore
index 2ff19897..88eb4dce 100644
--- a/platform/linux-generic/test/.gitignore
+++ b/platform/linux-generic/test/.gitignore
@@ -1,4 +1,3 @@
*.log
*.trs
-tests-linux-generic.env
-tests-validation.env
+*.env
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/test/.gitignore | 3 +--
1 file changed, 1 insertion(+), 2 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 e678e44fe99ada59b80097f97e22b0546bcdadc8 (commit)
from 27480d82bd93a881ae683a3c314c11042a68ce29 (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 e678e44fe99ada59b80097f97e22b0546bcdadc8
Author: Philip Colmer <philip.colmer(a)linaro.org>
Date: Wed Jan 24 13:08:06 2018 +0000
docs: fixing broken links
Signed-off-by: Philip Colmer <philip.colmer(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/doc/implementers-guide/implementers-guide.adoc b/doc/implementers-guide/implementers-guide.adoc
index 794beb00..f0ba0336 100644
--- a/doc/implementers-guide/implementers-guide.adoc
+++ b/doc/implementers-guide/implementers-guide.adoc
@@ -203,7 +203,7 @@ Examples of modules for the application interface includes "classification"
(functions dealing with time, excluding timers which have their own module),
timer, ...
The complete module list can be seen at:
-http://docs.opendataplane.org/master/linux-generic-doxygen-html/modules.html[ODP Modules] +
+https://www.opendataplane.org/api-documentation/master/api/modules.html[ODP Modules] +
Within the platform agnostic area, the validation tests for a given interface
are also grouped by modules, matching the ODP interface modules: for instance,
`test/common_plat/validation/api` mainly contains a list of
diff --git a/doc/process-guide/release-guide.adoc b/doc/process-guide/release-guide.adoc
index 595af91a..e5d72cb0 100644
--- a/doc/process-guide/release-guide.adoc
+++ b/doc/process-guide/release-guide.adoc
@@ -23,7 +23,7 @@ potentially backwards incompatible happening at lower frequency. Generation
releases are significantly less frequent. The specific digits used for the
generation and version numbering are described in the ODP API Documentation.
The roles referenced in this document are defined in the
-http://www.opendataplane.org/api-documentation/by-laws/[By-laws].
+https://www.opendataplane.org/developers/bylaws/index.html[By-laws].
=== Patch to release flow ===
Changes to the API are staged in api-next until they have been sufficiently
-----------------------------------------------------------------------
Summary of changes:
doc/implementers-guide/implementers-guide.adoc | 2 +-
doc/process-guide/release-guide.adoc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--