aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-04-13 10:16:19 +0300
committerMatias Elo <matias.elo@nokia.com>2022-04-13 17:29:54 +0300
commite361227ac00851e8720871e927b015c4c0e6a895 (patch)
tree35709982c63b83b45912fa3316c6daf8ee5fdbbc
parent6b15cb17ee850f7e5c42e6a0182548a19ab2cc94 (diff)
api: increment ODP API version to 1.36.0.0v1.36.0.0
Increment API version number to reflect the following changes: Backward incompatible: - cls: add action parameter odp_cos_action_t to CoS parameters - crypto: deprecate odp_crypto_operation() and the associated data structures and the completion event - tm: split odp_tm_capabilities_t.tm_queue_threshold capability into byte and packet modes - tm: split odp_tm_level_capabilities_t.tm_node_threshold capability into byte and packet modes Backward compatible: - cls: add CoS specific statistics counters (odp_cls_cos_stats_t) and matching capabilities (odp_cls_stats_capability_t) - common: convert 'unsigned int' types to 'uint32_t' - tm: remove unused TM shaper color enum odp_tm_shaper_color_t and ODP_NUM_SHAPER_COLORS define Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Jere Leppänen <jere.leppanen@nokia.com>
-rw-r--r--CHANGELOG33
-rw-r--r--configure.ac2
2 files changed, 34 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e5624a903..e182f0ad5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,36 @@
+== OpenDataPlane (1.36.0.0)
+
+=== Backward incompatible API changes
+
+==== Classifier
+* Add an action parameter `odp_cos_action_t` to CoS parameters
+(`odp_cls_cos_param_t`). Action may be to enqueue or drop the packet classified
+to the CoS. The old methods of creating a drop CoS have been replaced by the
+new drop action.
+
+==== Crypto
+* Deprecate `odp_crypto_operation()`, the associated data structures, and the
+completion event. Use `odp_crypto_op()` or `odp_crypto_op_enq()` instead.
+
+==== Traffic Manager
+* Split `odp_tm_capabilities_t.tm_queue_threshold` capability into byte and
+packet modes.
+* Split `odp_tm_level_capabilities_t.tm_node_threshold` capability into byte and
+packet modes.
+
+=== Backward compatible API changes
+==== Classifier
+* Add CoS specific statistics counters (`odp_cls_cos_stats_t`) and
+matching capabilities (`odp_cls_stats_capability_t`). Statistics counters can be
+read with `odp_cls_cos_stats()`.
+
+==== Common
+* Convert `unsigned int` types to `uint32_t`.
+
+==== Traffic Manager
+* Remove unused TM shaper color enum `odp_tm_shaper_color_t` and
+`ODP_NUM_SHAPER_COLORS` define.
+
== OpenDataPlane (1.35.0.0)
=== Backward incompatible API changes
diff --git a/configure.ac b/configure.ac
index 2d1084367..9e8bd0e69 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_PREREQ([2.5])
# ODP API version
##########################################################################
m4_define([odpapi_generation_version], [1])
-m4_define([odpapi_major_version], [35])
+m4_define([odpapi_major_version], [36])
m4_define([odpapi_minor_version], [0])
m4_define([odpapi_point_version], [0])
m4_define([odpapi_version],