From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EA86C41B80; Mon, 30 Jan 2023 13:05:12 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8C23440DF6; Mon, 30 Jan 2023 13:05:12 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id B8BCE40C35 for ; Mon, 30 Jan 2023 13:05:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675080311; x=1706616311; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Zbh9zpg4ATANvx3yBmvrt8qc6W5ctIZwsBPISxMDUNI=; b=a+CMwgiXyv8naHQ7ABl22dtEplnNNaDn2usjs58+JJW825WnBRDx8oZz uUcRv/rKCHXqENy34bcUbvANRWOJU8VstEgFk3oHnAZJkiG28Ial38tbV ZLntcA4O1N6XBKIJBozs10JTYa8zhJ2eXgi01L6V2VWlgtb6zHIllPFGt gceIQY9f2z9xtZi30irA4L6+94CG/SZtAu+YNomRQIy0NEcY21VPzFJqT XoST3pZIZZCi6lIFUtxdR2NstsqR2Z/XSapZkePRzCmbTsK3CZ1FIm9sa DtzrZSPK9heskfsdiIfGPwvyjHrjNRlUR4+HxK42vE4/vJk+0oeYwT8Jc A==; X-IronPort-AV: E=McAfee;i="6500,9779,10605"; a="315499694" X-IronPort-AV: E=Sophos;i="5.97,257,1669104000"; d="scan'208";a="315499694" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jan 2023 04:05:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10605"; a="732674536" X-IronPort-AV: E=Sophos;i="5.97,257,1669104000"; d="scan'208";a="732674536" Received: from silpixa00401012.ir.intel.com ([10.243.23.65]) by fmsmga004.fm.intel.com with ESMTP; 30 Jan 2023 04:05:02 -0800 From: Vikash Poddar To: Thomas Monjalon , Akhil Goyal , Fan Zhang Cc: dev@dpdk.org, Vikash Poddar , shirik@nvidia.com Subject: [PATCH] test/crypto: fix typo in AES test Date: Mon, 30 Jan 2023 12:03:03 +0000 Message-Id: <20230130120303.793537-1-vikash.chandrax.poddar@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Fix the spelling of scater to scatter in cryptodev AES test vector header file Fixes: 2692b02e03b2 ("test/crypto: add multi-segment out-of-place AES-XTS") Cc: shirik@nvidia.com Signed-off-by: Vikash Poddar --- .mailmap | 1 + app/test/test_cryptodev_aes_test_vectors.h | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.mailmap b/.mailmap index 75884b6fe2..c6650e32f6 100644 --- a/.mailmap +++ b/.mailmap @@ -1386,6 +1386,7 @@ Vijay Kumar Srivastava Vijay Srivastava Vikas Aggarwal Vikas Gupta +Vikash Poddar Vimal Chungath Vincent Guo Vincent Jardin diff --git a/app/test/test_cryptodev_aes_test_vectors.h b/app/test/test_cryptodev_aes_test_vectors.h index ea7b21ce53..f3686beeb5 100644 --- a/app/test/test_cryptodev_aes_test_vectors.h +++ b/app/test/test_cryptodev_aes_test_vectors.h @@ -4969,7 +4969,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Encryption (512-byte plaintext" - " Dataunit 512) Scater gather OOP", + " Dataunit 512) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_512_du_512, .op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -4979,7 +4979,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Decryption (512-byte plaintext" - " Dataunit 512) Scater gather OOP", + " Dataunit 512) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_512_du_512, .op_mask = BLOCKCIPHER_TEST_OP_DECRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -4989,7 +4989,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Encryption (512-byte plaintext" - " Dataunit 0) Scater gather OOP", + " Dataunit 0) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_512_du_0, .op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -4999,7 +4999,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Decryption (512-byte plaintext" - " Dataunit 0) Scater gather OOP", + " Dataunit 0) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_512_du_0, .op_mask = BLOCKCIPHER_TEST_OP_DECRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -5009,7 +5009,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Encryption (4096-byte plaintext" - " Dataunit 4096) Scater gather OOP", + " Dataunit 4096) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_4096_du_4096, .op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -5019,7 +5019,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Decryption (4096-byte plaintext" - " Dataunit 4096) Scater gather OOP", + " Dataunit 4096) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_4096_du_4096, .op_mask = BLOCKCIPHER_TEST_OP_DECRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -5029,7 +5029,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Encryption (4096-byte plaintext" - " Dataunit 0) Scater gather OOP", + " Dataunit 0) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_4096_du_0, .op_mask = BLOCKCIPHER_TEST_OP_ENCRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | @@ -5039,7 +5039,7 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = { }, { .test_descr = "AES-256-XTS Decryption (4096-byte plaintext" - " Dataunit 0) Scater gather OOP", + " Dataunit 0) Scatter gather OOP", .test_data = &aes_test_data_xts_wrapped_key_48_pt_4096_du_0, .op_mask = BLOCKCIPHER_TEST_OP_DECRYPT, .feature_mask = BLOCKCIPHER_TEST_FEATURE_OOP | -- 2.25.1 -------------------------------------------------------------- Intel Research and Development Ireland Limited Registered in Ireland Registered Office: Collinstown Industrial Park, Leixlip, County Kildare Registered Number: 308263 This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.