RE: [PATCH v4 4/7] random: keep PRNG state in lcore variable

2024-09-16 Thread Konstantin Ananyev
Subject: [PATCH v4 4/7] random: keep PRNG state in lcore variable > > Replace keeping PRNG state in a RTE_MAX_LCORE-sized static array of > cache-aligned and RTE_CACHE_GUARDed struct instances with keeping the > same state in a more cache-friendly lcore variable. > > Signed-off

[PATCH v4 4/7] random: keep PRNG state in lcore variable

2024-09-16 Thread Mattias Rönnblom
Replace keeping PRNG state in a RTE_MAX_LCORE-sized static array of cache-aligned and RTE_CACHE_GUARDed struct instances with keeping the same state in a more cache-friendly lcore variable. Signed-off-by: Mattias Rönnblom Acked-by: Morten Brørup -- RFC v3: * Remove cache alignment on unregist