patch 'test/crypto: fix typo in AES test' has been queued to stable release 21.11.4

Kevin Traynor ktraynor at redhat.com
Thu Feb 23 16:05:22 CET 2023


Hi,

FYI, your patch has been queued to stable release 21.11.4

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/28/23. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/kevintraynor/dpdk-stable

This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/af7f9481e187d3fa4e2eae56e0b6acca92d86418

Thanks.

Kevin

---
>From af7f9481e187d3fa4e2eae56e0b6acca92d86418 Mon Sep 17 00:00:00 2001
From: Vikash Poddar <vikash.chandrax.poddar at intel.com>
Date: Mon, 30 Jan 2023 12:03:03 +0000
Subject: [PATCH] test/crypto: fix typo in AES test

[ upstream commit e57cdbec6f94558697e50402e4bfe1dce6186d52 ]

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")

Signed-off-by: Vikash Poddar <vikash.chandrax.poddar at intel.com>
Acked-by: Kai Ji <kai.ji at intel.com>
---
 app/test/test_cryptodev_aes_test_vectors.h | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/app/test/test_cryptodev_aes_test_vectors.h b/app/test/test_cryptodev_aes_test_vectors.h
index a797af1b00..6c4f6b6f13 100644
--- a/app/test/test_cryptodev_aes_test_vectors.h
+++ b/app/test/test_cryptodev_aes_test_vectors.h
@@ -4690,5 +4690,5 @@ 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,
@@ -4698,5 +4698,5 @@ 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,
@@ -4706,5 +4706,5 @@ 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,
@@ -4714,5 +4714,5 @@ 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,
@@ -4722,5 +4722,5 @@ 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,
@@ -4730,5 +4730,5 @@ 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,
@@ -4738,5 +4738,5 @@ 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,
@@ -4746,5 +4746,5 @@ 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,
-- 
2.39.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2023-02-23 14:46:24.586594403 +0000
+++ 0031-test-crypto-fix-typo-in-AES-test.patch	2023-02-23 14:46:23.748235889 +0000
@@ -1 +1 @@
-From e57cdbec6f94558697e50402e4bfe1dce6186d52 Mon Sep 17 00:00:00 2001
+From af7f9481e187d3fa4e2eae56e0b6acca92d86418 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e57cdbec6f94558697e50402e4bfe1dce6186d52 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -15 +15,0 @@
- .mailmap                                   |  1 +
@@ -17 +17 @@
- 2 files changed, 9 insertions(+), 8 deletions(-)
+ 1 file changed, 8 insertions(+), 8 deletions(-)
@@ -19,10 +18,0 @@
-diff --git a/.mailmap b/.mailmap
-index 6a91c11be4..5015494210 100644
---- a/.mailmap
-+++ b/.mailmap
-@@ -1390,4 +1390,5 @@ Vijay Srivastava <vijays at solarflare.com>
- Vikas Aggarwal <vikas.aggarwal at caviumnetworks.com>
- Vikas Gupta <vikas.gupta at broadcom.com>
-+Vikash Poddar <vikash.chandrax.poddar at intel.com>
- Vimal Chungath <vcchunga at amazon.com>
- Vincent Guo <guopengfei160 at 163.com>
@@ -30 +20 @@
-index ea7b21ce53..f3686beeb5 100644
+index a797af1b00..6c4f6b6f13 100644
@@ -33 +23 @@
-@@ -4970,5 +4970,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4690,5 +4690,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -40 +30 @@
-@@ -4980,5 +4980,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4698,5 +4698,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -47 +37 @@
-@@ -4990,5 +4990,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4706,5 +4706,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -54 +44 @@
-@@ -5000,5 +5000,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4714,5 +4714,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -61 +51 @@
-@@ -5010,5 +5010,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4722,5 +4722,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -68 +58 @@
-@@ -5020,5 +5020,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4730,5 +4730,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -75 +65 @@
-@@ -5030,5 +5030,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4738,5 +4738,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
@@ -82 +72 @@
-@@ -5040,5 +5040,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {
+@@ -4746,5 +4746,5 @@ static const struct blockcipher_test_case aes_cipheronly_test_cases[] = {



More information about the stable mailing list