Re: [PATCH v4 08/10] test-pmd: declare lcore_count atomic

2025-02-21 Thread Andre Muezerie
On Fri, Feb 21, 2025 at 08:40:17AM +, Konstantin Ananyev wrote: > > > > Compiling with MSVC results in the error below: > > > > app/test/test_ring_perf.c(197): error C7712: address argument to atomic > > operation must be a pointer to an atomic integer, > > 'volatile unsigned int *'

RE: [PATCH v4 08/10] test-pmd: declare lcore_count atomic

2025-02-21 Thread Konstantin Ananyev
> Compiling with MSVC results in the error below: > > app/test/test_ring_perf.c(197): error C7712: address argument to atomic > operation must be a pointer to an atomic integer, > 'volatile unsigned int *' is not valid > > The fix is to mark lcore_count as atomic. > > Signed-off-by: A