From: Thomas Monjalon Date: Wed, 25 Nov 2015 17:27:21 +0000 (+0100) Subject: cryptodev: mark experimental state X-Git-Tag: spdx-start~7948 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=66874e55f550;p=dpdk.git cryptodev: mark experimental state The crypto API is in an early state. It requires more discussions and experiments to declare it stable, as discussed in http://dpdk.org/ml/archives/dev/2015-November/028634.html A documentation section will be required in the guides. Signed-off-by: Thomas Monjalon --- diff --git a/MAINTAINERS b/MAINTAINERS index d0022f1079..4478862f8b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -216,7 +216,7 @@ M: Thomas Monjalon F: lib/librte_ether/ F: scripts/test-null.sh -Crypto API +Crypto API - EXPERIMENTAL M: Declan Doherty F: lib/librte_cryptodev/ F: app/test/test_cryptodev* diff --git a/config/common_bsdapp b/config/common_bsdapp index 56020b6c6f..3286481725 100644 --- a/config/common_bsdapp +++ b/config/common_bsdapp @@ -310,6 +310,7 @@ CONFIG_RTE_PMD_PACKET_PREFETCH=y # # Compile generic crypto device library +# EXPERIMENTAL: API may change without prior notice # CONFIG_RTE_LIBRTE_CRYPTODEV=y CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n diff --git a/config/common_linuxapp b/config/common_linuxapp index eaad8d6104..2866986831 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -319,6 +319,7 @@ CONFIG_RTE_PMD_PACKET_PREFETCH=y # # Compile generic crypto device library +# EXPERIMENTAL: API may change without prior notice # CONFIG_RTE_LIBRTE_CRYPTODEV=y CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n diff --git a/doc/guides/contributing/versioning.rst b/doc/guides/contributing/versioning.rst index 8a739dd72b..653c7d0da0 100644 --- a/doc/guides/contributing/versioning.rst +++ b/doc/guides/contributing/versioning.rst @@ -13,6 +13,7 @@ General Guidelines ------------------ #. Whenever possible, ABI should be preserved +#. The libraries marked in experimental state may change without constraint. #. The addition of symbols is generally not problematic #. The modification of symbols can generally be managed with versioning #. The removal of symbols generally is an ABI break and requires bumping of the diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst index 2ab954c477..565317905b 100644 --- a/doc/guides/rel_notes/release_2_2.rst +++ b/doc/guides/rel_notes/release_2_2.rst @@ -17,6 +17,16 @@ New Features * **Added keepalive support to EAL and example application.** +* **Added experimental cryptodev API** + + The cryptographic processing of packet is provided as a preview + with two drivers for: + + * Intel QuickAssist devices + * Intel AES-NI multi-buffer library + + Due to its experimental state, the API may change without prior notice. + * **Added ethdev API to support IEEE1588.** Added functions to read, write and adjust system time in the NIC. diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h index 04bade7d68..aa9f785f82 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptodev/rte_cryptodev.h @@ -39,6 +39,9 @@ * * Defines RTE Crypto Device APIs for the provisioning of cipher and * authentication operations. + * + * @warning + * @b EXPERIMENTAL: this API may change without prior notice */ #ifdef __cplusplus