RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm

2024-03-15 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Akhil Goyal > Sent: Thursday, March 14, 2024 1:50 PM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Power, Ciara > Subject: RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm > > > > Subject: RE: [EXTERNAL

RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm

2024-03-14 Thread Akhil Goyal
> > Subject: RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc > > algorithm > > > > > Because net crc api is not thread-safe, setting crc algorithm by the > > > application will prevent race condition in the calc function. > > > Race cond

RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm

2024-03-13 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Akhil Goyal > Sent: Wednesday, March 13, 2024 7:22 PM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Power, Ciara > Subject: RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm > > > Because net crc api is n

RE: [EXTERNAL] [PATCH] app/crypto-perf-test: fix unset crc algorithm

2024-03-13 Thread Akhil Goyal
> Because net crc api is not thread-safe, setting crc algorithm > by the application will prevent race condition in the calc function. > Race condition still may occur when any of the threads will call this > function again. Function is called with the highest possible SIMD > extension, which is AV

[PATCH] app/crypto-perf-test: fix unset crc algorithm

2024-03-13 Thread Arkadiusz Kusztal
Because net crc api is not thread-safe, setting crc algorithm by the application will prevent race condition in the calc function. Race condition still may occur when any of the threads will call this function again. Function is called with the highest possible SIMD extension, which is AVX512, but