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 f5120355753ae3d69f81010cb9131abffdfb03fc (commit)
from 54228421977f94d9da752290540c6ec4dc5306a0 (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 f5120355753ae3d69f81010cb9131abffdfb03fc
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Sat Oct 21 12:16:23 2017 +0300
.gitinore: ignore moved .pc files
pkg-config files were moved, but I forgot to update .gitignore files.
Update them now.
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/.gitignore b/.gitignore
index 3d4c58d6..b9c61424 100644
--- a/.gitignore
+++ b/.gitignore
@@ -44,6 +44,5 @@ m4/libtool.m4
m4/lt*.m4
missing
perf.data*
-pkgconfig/libodp*.pc
tags
test-driver
diff --git a/helper/.gitignore b/helper/.gitignore
new file mode 100644
index 00000000..edf7a0ba
--- /dev/null
+++ b/helper/.gitignore
@@ -0,0 +1 @@
+libodphelper.pc
diff --git a/platform/linux-generic/.gitignore b/platform/linux-generic/.gitignore
index 909756a1..442e82a9 100644
--- a/platform/linux-generic/.gitignore
+++ b/platform/linux-generic/.gitignore
@@ -1 +1,2 @@
include/odp/api/plat/static_inline.h
+libodp-linux.pc
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 -
helper/.gitignore | 1 +
platform/linux-generic/.gitignore | 1 +
3 files changed, 2 insertions(+), 1 deletion(-)
create mode 100644 helper/.gitignore
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 e3108af2f0b58c2ceca422b418439bba5de04b11 (commit)
from cd196cf12f957456b24c844b2c38be5062130cf1 (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 e3108af2f0b58c2ceca422b418439bba5de04b11
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Tue Oct 17 21:19:57 2017 +0300
api: ipsec: move pipeline SA param to inbound substructrure
SA param pipeline is related only to inbound configuration. If at some
point it will be possible to configure destination for outbound
operation, it will be done through a separate param. Move pipeline into
inbound params substructure.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/include/odp/api/spec/ipsec.h b/include/odp/api/spec/ipsec.h
index ddcdf75b..26e852fc 100644
--- a/include/odp/api/spec/ipsec.h
+++ b/include/odp/api/spec/ipsec.h
@@ -633,14 +633,6 @@ typedef struct odp_ipsec_sa_param_t {
/** SPI value */
uint32_t spi;
- /** Select pipelined destination for resulting events
- *
- * Asynchronous and inline modes generate events. Select where
- * those events are sent. Inbound SAs may choose to use pipelined
- * classification. The default value is ODP_IPSEC_PIPELINE_NONE.
- */
- odp_ipsec_pipeline_t pipeline;
-
/** Destination queue for IPSEC events
*
* Operations in asynchronous or inline mode enqueue resulting events
@@ -690,6 +682,15 @@ typedef struct odp_ipsec_sa_param_t {
*/
uint32_t antireplay_ws;
+ /** Select pipelined destination for resulting events
+ *
+ * Asynchronous and inline modes generate events.
+ * Select where those events are sent. Inbound SAs may
+ * choose to use pipelined classification. The default
+ * value is ODP_IPSEC_PIPELINE_NONE.
+ */
+ odp_ipsec_pipeline_t pipeline;
+
/** Classifier destination CoS for resulting packets
*
* Successfully decapsulated packets are sent to
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/ipsec.h | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
hooks/post-receive
--