Re: [dpdk-dev] [PATCH v2] lib/mempool: distinguish debug counters from cache and pool

2021-04-19 Thread Dharmik Thakkar
Hi Olivier, Apologies for the delayed response! I’m stepping in since Joyce is on vacation. I have updated the patch with the required changes. Thank you! > On Apr 7, 2021, at 9:28 AM, Olivier Matz wrote:

Re: [dpdk-dev] [PATCH v2] lib/mempool: distinguish debug counters from cache and pool

2021-04-07 Thread Olivier Matz
Hi Joyce, On Thu, Mar 18, 2021 at 07:20:22PM +0800, Joyce Kong wrote: > If cache is enabled, objects will be retrieved/put from/to cache, > subsequently from/to the common pool. Now the debug stats calculate > the objects retrieved/put from/to cache and pool together, it is > better to distinguish

[dpdk-dev] [PATCH v2] lib/mempool: distinguish debug counters from cache and pool

2021-03-18 Thread Joyce Kong
If cache is enabled, objects will be retrieved/put from/to cache, subsequently from/to the common pool. Now the debug stats calculate the objects retrieved/put from/to cache and pool together, it is better to distinguish the data number from local cache and common pool. Signed-off-by: Joyce Kong