Re: [dpdk-dev] [PATCH v2] event/cnxk: reduce max timer chunk pool cache size

2021-09-06 Thread Jerin Jacob
On Mon, Aug 30, 2021 at 9:45 PM Shijith Thotton wrote: > > Reduced max chunk pool cache size from RTE_MEMPOOL_CACHE_MAX_SIZE(512) > to 128. > > If chunk pool cache is empty, it gets filled during arm. Filling 512 > entries at a time will fail arm if timeout is shorter. > > Fixes: 0e792433d051 ("ev

[dpdk-dev] [PATCH v2] event/cnxk: reduce max timer chunk pool cache size

2021-08-30 Thread Shijith Thotton
Reduced max chunk pool cache size from RTE_MEMPOOL_CACHE_MAX_SIZE(512) to 128. If chunk pool cache is empty, it gets filled during arm. Filling 512 entries at a time will fail arm if timeout is shorter. Fixes: 0e792433d051 ("event/cnxk: create and free timer adapter") Signed-off-by: Shijith Thot