On 2025/2/21 19:52, Sebastian Andrzej Siewior wrote: ... \ > @@ -88,19 +95,30 @@ static const char pp_stats[][ETH_GSTRING_LEN] = { > bool page_pool_get_stats(const struct page_pool *pool, > struct page_pool_stats *stats) > { > + const struct page_pool_alloc_stats *alloc_stats; > unsigned int start; > int cpu = 0; > > if (!stats) > return false; > > + alloc_stats = &pool->alloc_stats; > /* The caller is responsible to initialize stats. */ > - stats->alloc_stats.fast += pool->alloc_stats.fast; > - stats->alloc_stats.slow += pool->alloc_stats.slow; > - stats->alloc_stats.slow_high_order += pool->alloc_stats.slow_high_order; > - stats->alloc_stats.empty += pool->alloc_stats.empty; > - stats->alloc_stats.refill += pool->alloc_stats.refill; > - stats->alloc_stats.waive += pool->alloc_stats.waive; > + do { > + start = u64_stats_fetch_begin(&alloc_stats->syncp); > + u64_stats_add(&stats->alloc_stats.fast, > + u64_stats_read(&alloc_stats->fast)); > + u64_stats_add(&stats->alloc_stats.slow, > + u64_stats_read(&alloc_stats->slow)); > + u64_stats_add(&stats->alloc_stats.slow_high_order, > + u64_stats_read(&alloc_stats->slow_high_order)); > + u64_stats_add(&stats->alloc_stats.empty, > + u64_stats_read(&alloc_stats->empty)); > + u64_stats_add(&stats->alloc_stats.refill, > + u64_stats_read(&alloc_stats->refill)); > + u64_stats_add(&stats->alloc_stats.waive, > + u64_stats_read(&alloc_stats->waive)); similar comment as patch 1. > + } while (u64_stats_fetch_retry(&alloc_stats->syncp, start)); >