RE: [PATCH] doc: update release notes for 22.07

2022-04-16 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Thomas Monjalon > Sent: Thursday, April 14, 2022 4:03 PM > To: Adham Masarwah > Cc: dev@dpdk.org; Matan Azrad ; Idan Hackmon > ; Tamer Hleihel ; Tal > Shnaiderman ; Raslan Darawsheh > > Subject: Re: [PATCH] doc: update release notes for 22.07 > > 14/04/

[PATCH 1/1] fix compilation for ppc64le on musl/Alpine

2022-04-16 Thread Dunk
musl lacks __ppc_get_timebase() but has __builtin_ppc_get_timebase()the __ppc_get_timebase_freq() is taken from:https://git.alpinelinux.org/aports/commit/?id=06b03f70fb94972286c0c9f6278df89e53903833Signed-off-by: Duncan Bellamy 01-ppc.patch Description: Binary data

RE: [EXT] [PATCH 1/2] common/dpaax: remove dead code

2022-04-16 Thread Akhil Goyal
> This patch remove structural and logical dead code from > caamflib. > > coverity issues: 375251 375258 375261 375267 375269 375285 373161 >375249 375257 > > Fixes: 6127fff842a7 ("common/dpaax: remove outdated caamflib code") > Fixes: 81eb760d2207 ("common/dpaax/caamflib: remove

[PATCH v4 10/10] test/security: add inline IPsec IPv6 flow label cases

2022-04-16 Thread Akhil Goyal
From: Vamsi Attunuru Patch adds unit tests for IPv6 flow label set & copy operations. Signed-off-by: Vamsi Attunuru --- app/test/test_cryptodev_security_ipsec.c | 35 ++- app/test/test_cryptodev_security_ipsec.h | 10 +++ app/test/test_security_inline_proto.c| 79 ++

[PATCH v4 09/10] test/security: add inline IPsec SA hard expiry cases

2022-04-16 Thread Akhil Goyal
From: Vamsi Attunuru Patch adds hard expiry unit tests for both packet and byte limits. Signed-off-by: Vamsi Attunuru --- app/test/test_security_inline_proto.c | 71 +++ 1 file changed, 61 insertions(+), 10 deletions(-) diff --git a/app/test/test_security_inline_proto.

[PATCH v4 08/10] test/security: add inline IPsec SA soft expiry cases

2022-04-16 Thread Akhil Goyal
From: Vamsi Attunuru Patch adds unit tests for packet & byte soft expiry events. Signed-off-by: Vamsi Attunuru --- app/test/test_cryptodev_security_ipsec.h | 2 + app/test/test_security_inline_proto.c | 105 +- app/test/test_security_inline_proto_vectors.h | 6

[PATCH v4 07/10] ethdev: add IPsec SA expiry event subtypes

2022-04-16 Thread Akhil Goyal
From: Vamsi Attunuru Patch adds new event subtypes for notifying expiry events upon reaching IPsec SA soft packet expiry and hard packet/byte expiry limits. Signed-off-by: Vamsi Attunuru --- lib/ethdev/rte_ethdev.h | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/ethdev/rte_eth

[PATCH v4 06/10] test/security: add ESN and anti-replay cases for inline

2022-04-16 Thread Akhil Goyal
Added cases to test anti replay for inline IPsec processing with and without extended sequence number support. Signed-off-by: Akhil Goyal --- app/test/test_security_inline_proto.c | 308 ++ 1 file changed, 308 insertions(+) diff --git a/app/test/test_security_inline_prot

[PATCH v4 05/10] test/security: add more inline IPsec functional cases

2022-04-16 Thread Akhil Goyal
Added more inline IPsec functional verification cases. These cases do not have known vectors but are verified using encap + decap test for all the algo combinations. Signed-off-by: Akhil Goyal --- app/test/test_security_inline_proto.c | 517 ++ 1 file changed, 517 inserti

[PATCH v4 04/10] test/security: add inline IPsec reassembly cases

2022-04-16 Thread Akhil Goyal
Added unit test cases for IP reassembly of inline IPsec inbound scenarios. In these cases, known test vectors of fragments are first processed for inline outbound processing and then received back on loopback interface for inbound processing along with IP reassembly of the corresponding decrypted p

[PATCH v4 03/10] test/security: add combined mode inline IPsec cases

2022-04-16 Thread Akhil Goyal
Added combined encap and decap test cases for various algorithm combinations Signed-off-by: Akhil Goyal --- app/test/test_security_inline_proto.c | 102 ++ 1 file changed, 102 insertions(+) diff --git a/app/test/test_security_inline_proto.c b/app/test/test_security_inli

[PATCH v4 02/10] test/security: add inline inbound IPsec cases

2022-04-16 Thread Akhil Goyal
Added test cases for inline Inbound protocol offload verification with known test vectors from Lookaside mode. Signed-off-by: Akhil Goyal --- app/test/test_security_inline_proto.c | 65 +++ 1 file changed, 65 insertions(+) diff --git a/app/test/test_security_inline_proto

[PATCH v4 01/10] app/test: add unit cases for inline IPsec offload

2022-04-16 Thread Akhil Goyal
A new test suite is added in test app to test inline IPsec protocol offload. In this patch, predefined vectors from Lookaside IPsec test are used to verify the IPsec functionality without the need of external traffic generators. The sent packet is loopbacked onto the same interface which is receive

[PATCH v4 00/10] app/test: add inline IPsec and reassembly cases

2022-04-16 Thread Akhil Goyal
IP reassembly offload was added in last release. The test app for unit testing IP reassembly of inline inbound IPsec flows is added in this patchset. For testing IP reassembly, base inline IPsec is also added. The app is enhanced in v4 to handle more functional unit test cases for inline IPsec simi

RE: [PATCH 0/3] add IPsec AH test cases

2022-04-16 Thread Akhil Goyal
> Subject: [PATCH 0/3] add IPsec AH test cases > > Add IPsec AH known test vectors including combined > mode support. > > Archana Muniganti (3): > test/crypto: add AH under combined mode UT > test/crypto: add AH test vectors > test/crypto: add AH AES-GMAC test vectors > Series Acked-by: Ak