Commit 2975822f authored by paul luse's avatar paul luse Committed by Jim Harris
Browse files

misc: Remove experimental comments regarding crypto



Change-Id: I1635a81f6b6417b5b632f6fc244f815a30df45b7
Signed-off-by: default avatarpaul luse <paul.e.luse@intel.com>
Reviewed-on: https://review.gerrithub.io/429514


Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarDarek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
parent c9118cae
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -346,7 +346,6 @@ than or equal to 4.14 will see significantly reduced performance.
fi

if [[ "${CONFIG[CRYPTO]}" = "y" ]]; then
	echo NOTE: Crypto is currently marked as experimental.  Do not use in production.
	if [[ $(nasm -v | sed 's/[^0-9]*//g' | awk '{print substr ($0, 0, 5)}') -lt "21202" ]]; then
		echo Crypto requires NASM version 2.12.02 or newer.  Please install
		echo or upgrade then re-run this script.
+0 −4
Original line number Diff line number Diff line
@@ -51,10 +51,6 @@
 */
#define MAX_NUM_DRV_TYPES 2
#define AESNI_MB "crypto_aesni_mb"
/* NOTE: QAT is experimental.  It has been tested in development but should not
 * be used in production until this comment is removed following the addition of
 * QAT hardware to the CI test pool.
 */
#define QAT "crypto_qat"
const char *g_driver_names[MAX_NUM_DRV_TYPES] = { AESNI_MB, QAT };

+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
 # CRY <bdev name> <vbdev name> <key> <PMD>
 # key size depends on cipher
 # supported PMD names: crypto_aesni_mb, crypto_qat
 # Note: QAT is experimental while test HW is being setup
 CRY Malloc6 crypto_ram 0123456789123456 crypto_aesni_mb

[Malloc]