DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf
@ 2025-05-02 10:12 Kai Ji
  2025-05-04 21:17 ` Patrick Robb
  2025-05-07  8:56 ` Radu Nicolau
  0 siblings, 2 replies; 3+ messages in thread
From: Kai Ji @ 2025-05-02 10:12 UTC (permalink / raw)
  To: dev; +Cc: gakhil, Kai Ji

Remove all decrypt test cases in aesni-mb throughput perf as the
decrypt throughput testing only support OOP by dpdk-test-crypto-perf

Signed-off-by: Kai Ji <kai.ji@intel.com>
---
 .../configs/crypto-perf-aesni-mb.json         | 24 -------------------
 1 file changed, 24 deletions(-)

diff --git a/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json b/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
index d50e4af36c..91fbc9cfcd 100644
--- a/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
+++ b/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
@@ -13,13 +13,6 @@
 				"devtype": "crypto_aesni_mb"
 			}
 		},
-		"AES-CBC-128 SHA1-HMAC auth-then-cipher decrypt": {
-			"cipher-algo": "aes-cbc",
-			"cipher-key-sz": "16",
-			"auth-algo": "sha1-hmac",
-			"optype": "auth-then-cipher",
-			"cipher-op": "decrypt"
-		},
 		"AES-CBC-128 SHA1-HMAC cipher-then-auth encrypt": {
 			"cipher-algo": "aes-cbc",
 			"cipher-key-sz": "16",
@@ -30,13 +23,6 @@
 			"optype": "cipher-then-auth",
 			"cipher-op": "encrypt"
 		},
-		"AES-CBC-256 SHA2-256-HMAC auth-then-cipher decrypt": {
-			"cipher-algo": "aes-cbc",
-			"cipher-key-sz": "32",
-			"auth-algo": "sha2-256-hmac",
-			"optype": "auth-then-cipher",
-			"cipher-op": "decrypt"
-		},
 		"AES-CBC-256 SHA2-256-HMAC cipher-then-auth encrypt": {
 			"cipher-algo": "aes-cbc",
 			"cipher-key-sz": "32",
@@ -53,21 +39,11 @@
 			"optype": "aead",
 			"total-ops": "10000000"
 		},
-		"AES-GCM-128 aead-op decrypt": {
-			"aead-algo": "aes-gcm",
-			"aead-key-sz": "16",
-			"aead-op": "decrypt"
-		},
 		"AES-GCM-256 aead-op encrypt": {
 			"aead-algo": "aes-gcm",
 			"aead-key-sz": "32",
 			"aead-op": "encrypt"
 		},
-		"AES-GCM-256 aead-op decrypt": {
-			"aead-algo": "aes-gcm",
-			"aead-key-sz": "32",
-			"aead-op": "decrypt"
-		},
 		"AES-GMAC 128 auth-only generate": {
 			"auth-algo": "aes-gmac",
 			"auth-key-sz": "16",
-- 
2.34.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf
  2025-05-02 10:12 [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf Kai Ji
@ 2025-05-04 21:17 ` Patrick Robb
  2025-05-07  8:56 ` Radu Nicolau
  1 sibling, 0 replies; 3+ messages in thread
From: Patrick Robb @ 2025-05-04 21:17 UTC (permalink / raw)
  To: Kai Ji; +Cc: dev, gakhil

[-- Attachment #1: Type: text/plain, Size: 3157 bytes --]

Please disregard the Community Lab DTS failure just reported on this
patchseries. I need to reconfigure the testbed and rerun the test.

On Fri, May 2, 2025 at 6:12 AM Kai Ji <kai.ji@intel.com> wrote:

> Remove all decrypt test cases in aesni-mb throughput perf as the
> decrypt throughput testing only support OOP by dpdk-test-crypto-perf
>
> Signed-off-by: Kai Ji <kai.ji@intel.com>
> ---
>  .../configs/crypto-perf-aesni-mb.json         | 24 -------------------
>  1 file changed, 24 deletions(-)
>
> diff --git a/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
> b/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
> index d50e4af36c..91fbc9cfcd 100644
> --- a/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
> +++ b/app/test-crypto-perf/configs/crypto-perf-aesni-mb.json
> @@ -13,13 +13,6 @@
>                                 "devtype": "crypto_aesni_mb"
>                         }
>                 },
> -               "AES-CBC-128 SHA1-HMAC auth-then-cipher decrypt": {
> -                       "cipher-algo": "aes-cbc",
> -                       "cipher-key-sz": "16",
> -                       "auth-algo": "sha1-hmac",
> -                       "optype": "auth-then-cipher",
> -                       "cipher-op": "decrypt"
> -               },
>                 "AES-CBC-128 SHA1-HMAC cipher-then-auth encrypt": {
>                         "cipher-algo": "aes-cbc",
>                         "cipher-key-sz": "16",
> @@ -30,13 +23,6 @@
>                         "optype": "cipher-then-auth",
>                         "cipher-op": "encrypt"
>                 },
> -               "AES-CBC-256 SHA2-256-HMAC auth-then-cipher decrypt": {
> -                       "cipher-algo": "aes-cbc",
> -                       "cipher-key-sz": "32",
> -                       "auth-algo": "sha2-256-hmac",
> -                       "optype": "auth-then-cipher",
> -                       "cipher-op": "decrypt"
> -               },
>                 "AES-CBC-256 SHA2-256-HMAC cipher-then-auth encrypt": {
>                         "cipher-algo": "aes-cbc",
>                         "cipher-key-sz": "32",
> @@ -53,21 +39,11 @@
>                         "optype": "aead",
>                         "total-ops": "10000000"
>                 },
> -               "AES-GCM-128 aead-op decrypt": {
> -                       "aead-algo": "aes-gcm",
> -                       "aead-key-sz": "16",
> -                       "aead-op": "decrypt"
> -               },
>                 "AES-GCM-256 aead-op encrypt": {
>                         "aead-algo": "aes-gcm",
>                         "aead-key-sz": "32",
>                         "aead-op": "encrypt"
>                 },
> -               "AES-GCM-256 aead-op decrypt": {
> -                       "aead-algo": "aes-gcm",
> -                       "aead-key-sz": "32",
> -                       "aead-op": "decrypt"
> -               },
>                 "AES-GMAC 128 auth-only generate": {
>                         "auth-algo": "aes-gmac",
>                         "auth-key-sz": "16",
> --
> 2.34.1
>
>

[-- Attachment #2: Type: text/html, Size: 4830 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf
  2025-05-02 10:12 [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf Kai Ji
  2025-05-04 21:17 ` Patrick Robb
@ 2025-05-07  8:56 ` Radu Nicolau
  1 sibling, 0 replies; 3+ messages in thread
From: Radu Nicolau @ 2025-05-07  8:56 UTC (permalink / raw)
  To: Kai Ji, dev; +Cc: gakhil

[-- Attachment #1: Type: text/plain, Size: 275 bytes --]


On 02-May-25 11:12 AM, Kai Ji wrote:
> Remove all decrypt test cases in aesni-mb throughput perf as the
> decrypt throughput testing only support OOP by dpdk-test-crypto-perf
>
> Signed-off-by: Kai Ji<kai.ji@intel.com>
> ---

Acked-by: Radu Nicolau <radu.nicolau@intel.com>

[-- Attachment #2: Type: text/html, Size: 824 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-05-07  8:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-05-02 10:12 [dpdk-dev v1] app/test-crypto-perf: remove decrypt test case from perf Kai Ji
2025-05-04 21:17 ` Patrick Robb
2025-05-07  8:56 ` Radu Nicolau

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