]> git.droids-corp.org - dpdk.git/commitdiff
cryptodev: mark experimental state
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 25 Nov 2015 17:27:21 +0000 (18:27 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 25 Nov 2015 18:18:04 +0000 (19:18 +0100)
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 <thomas.monjalon@6wind.com>
MAINTAINERS
config/common_bsdapp
config/common_linuxapp
doc/guides/contributing/versioning.rst
doc/guides/rel_notes/release_2_2.rst
lib/librte_cryptodev/rte_cryptodev.h

index d0022f1079352e78e730bde7afecfc8893375503..4478862f8bf1d7d38c52c877d7dea7437857093b 100644 (file)
@@ -216,7 +216,7 @@ M: Thomas Monjalon <thomas.monjalon@6wind.com>
 F: lib/librte_ether/
 F: scripts/test-null.sh
 
-Crypto API
+Crypto API - EXPERIMENTAL
 M: Declan Doherty <declan.doherty@intel.com>
 F: lib/librte_cryptodev/
 F: app/test/test_cryptodev*
index 56020b6c6fb6970b4202b04f241df526b02977c1..32864817250d6df413c0e5051046b4a37334e584 100644 (file)
@@ -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
index eaad8d61045fce75a7980627675b93e6996b20f1..28669868316aef174614b0a3aac72fb522c5cb25 100644 (file)
@@ -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
index 8a739dd72b7adb81f3c1975e61d7e06f628a59a0..653c7d0da0d365831e45dad92cb409d4ed9fec9e 100644 (file)
@@ -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
index 2ab954c4771adb46689ea7d552c75a3fc74ce1f3..565317905be508800827b9a7c7db1c26cabd23bd 100644 (file)
@@ -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.
index 04bade7d68c6ffcbea780d58c607de71882d1ef8..aa9f785f82308e0936cd212adc37b59ab609bc35 100644 (file)
@@ -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