RE: [EXT] [PATCH] app/test-crypto-perf: add missed resubmission fix

2024-01-14 Thread Suanming Mou
> -Original Message- > From: Anoob Joseph > Sent: Wednesday, January 10, 2024 10:47 PM > To: Suanming Mou > Cc: dev@dpdk.org; sta...@dpdk.org; ciara.po...@intel.com > Subject: RE: [EXT] [PATCH] app/test-crypto-perf: add missed resubmission fix > > Hi Suanming

RE: [EXT] [PATCH] app/test-crypto-perf: add missed resubmission fix

2024-01-10 Thread Anoob Joseph
Hi Suanming, Please see inline. Thanks, Anoob > -Original Message- > From: Suanming Mou > Sent: Friday, January 5, 2024 12:26 PM > To: Anoob Joseph ; ciara.po...@intel.com > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [EXT] [PATCH] app/test-crypto-perf: add misse

[PATCH] app/test-crypto-perf: add missed resubmission fix

2024-01-04 Thread Suanming Mou
Currently, after enqueue_burst, there may be ops_unused ops left for next round enqueue. And in next round preparation, only ops_needed ops will be added. But if in the final round the left ops is less than ops_needed, there will be invalid ops between the new needed ops and previous unused ops. Th