DPDK patches and discussions
 help / color / mirror / Atom feed
From: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
To: <dev@dpdk.org>, Akhil Goyal <gakhil@marvell.com>,
	Fan Zhang <fanzhang.oss@gmail.com>
Cc: Anoob Joseph <anoobj@marvell.com>,
	Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
Subject: [PATCH v3 2/3] test/crypto: remove unused variable in modex test data
Date: Wed, 26 Jun 2024 15:33:41 +0530	[thread overview]
Message-ID: <20240626100345.1758-3-gmuthukrishn@marvell.com> (raw)
In-Reply-To: <20240626100345.1758-1-gmuthukrishn@marvell.com>

Remove unused result_len from modex test data.

Signed-off-by: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
---
 app/test/test_cryptodev_mod_test_vectors.h | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/app/test/test_cryptodev_mod_test_vectors.h b/app/test/test_cryptodev_mod_test_vectors.h
index c773c37018..a4e06c0291 100644
--- a/app/test/test_cryptodev_mod_test_vectors.h
+++ b/app/test/test_cryptodev_mod_test_vectors.h
@@ -27,7 +27,6 @@ struct modex_test_data {
 		uint8_t data[DATA_SIZE];
 		uint16_t len;
 	} reminder;
-	uint16_t result_len;
 };
 struct modinv_test_data {
 	enum rte_crypto_asym_xform_type xform_type;
@@ -44,7 +43,6 @@ struct modinv_test_data {
 		uint8_t data[DATA_SIZE];
 		uint16_t len;
 	} inverse;
-	uint16_t result_len;
 };
 
 /* ModExp #1 */
@@ -109,7 +107,6 @@ modex_test_data modex_test_case_m128_b20_e3 = {
 		},
 		.len = 128
 	},
-	.result_len = 128
 };
 
 /* ModInv #1 */
@@ -167,7 +164,6 @@ modinv_test_data modinv_test_case = {
 		},
 		.len = 128
 	},
-	.result_len = 128
 };
 
 /* modular operation test data */
@@ -347,7 +343,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 192
 	},
-	.result_len = 192
 },
 {
 	.description = "Modular Exponentiation tests for Group 14",
@@ -442,7 +437,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 256
 	},
-	.result_len = 256
 },
 {
 	.description = "Modular Exponentiation tests for Group 15",
@@ -571,7 +565,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 384
 	},
-	.result_len = 384
 },
 {
 	.description = "Modular Exponentiation tests for Group 16",
@@ -733,7 +726,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 512
 	},
-	.result_len = 512
 },
 {
 	.description = "Modular Exponentiation tests for Group 17",
@@ -960,7 +952,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 768
 	},
-	.result_len = 768
 },
 {
 	.description = "Modular Exponentiation tests for Group 18",
@@ -1252,7 +1243,6 @@ modex_test_data modex_group_test_cases[] = {
 		},
 		.len = 1024
 	},
-	.result_len = 1024
 },
 };
 
-- 
2.25.1


  parent reply	other threads:[~2024-06-26 10:11 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-16  4:42 [PATCH v1 0/4] test/crypto: enhance modex tests Gowrishankar Muthukrishnan
2024-06-16  4:42 ` [PATCH v1 1/4] test/crypto: validate modex result from first nonzero value Gowrishankar Muthukrishnan
2024-06-16  4:42 ` [PATCH v1 2/4] test/crypto: remove unused variable in modex test data Gowrishankar Muthukrishnan
2024-06-16  4:42 ` [PATCH v1 3/4] test/crypto: use common test function for mod tests Gowrishankar Muthukrishnan
2024-06-16  4:42 ` [PATCH v1 4/4] test/crypto: add modex tests for zero padded operands Gowrishankar Muthukrishnan
2024-06-17  7:12 ` [PATCH v1 0/4] test/crypto: enhance modex tests Anoob Joseph
2024-06-20  7:10 ` Akhil Goyal
2024-06-21  2:38 ` [PATCH v2 " Gowrishankar Muthukrishnan
2024-06-21  2:38   ` [PATCH v2 1/4] test/crypto: validate modex result from first nonzero value Gowrishankar Muthukrishnan
2024-06-21  2:38   ` [PATCH v2 2/4] test/crypto: remove unused variable in modex test data Gowrishankar Muthukrishnan
2024-06-21  2:38   ` [PATCH v2 3/4] test/crypto: use common test function for mod tests Gowrishankar Muthukrishnan
2024-06-21  2:38   ` [PATCH v2 4/4] test/crypto: add modex tests for zero padded operands Gowrishankar Muthukrishnan
2024-06-26 10:03   ` [PATCH v3 0/3] test/crypto: add modex test for zero padding Gowrishankar Muthukrishnan
2024-06-26 10:03     ` [PATCH v3 1/3] test/crypto: validate modex result from first nonzero value Gowrishankar Muthukrishnan
2024-06-26 10:03     ` Gowrishankar Muthukrishnan [this message]
2024-06-26 10:03     ` [PATCH v3 3/3] test/crypto: add modex tests for zero padded operands Gowrishankar Muthukrishnan
2024-06-27  5:12     ` [PATCH v3 0/3] test/crypto: add modex test for zero padding Akhil Goyal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240626100345.1758-3-gmuthukrishn@marvell.com \
    --to=gmuthukrishn@marvell.com \
    --cc=anoobj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=fanzhang.oss@gmail.com \
    --cc=gakhil@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).