[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c7b52d18-430c-4a00-908a-9279bc77db50@huawei.com>
Date: Sat, 22 Feb 2025 16:13:47 +0800
From: Yunsheng Lin <linyunsheng@...wei.com>
To: Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
<linux-rdma@...r.kernel.org>, <netdev@...r.kernel.org>
CC: "David S. Miller" <davem@...emloft.net>, Andrew Lunn
<andrew+netdev@...n.ch>, Eric Dumazet <edumazet@...gle.com>, Ilias Apalodimas
<ilias.apalodimas@...aro.org>, Jakub Kicinski <kuba@...nel.org>, Jesper
Dangaard Brouer <hawk@...nel.org>, Leon Romanovsky <leon@...nel.org>, Paolo
Abeni <pabeni@...hat.com>, Saeed Mahameed <saeedm@...dia.com>, Simon Horman
<horms@...nel.org>, Tariq Toukan <tariqt@...dia.com>, Thomas Gleixner
<tglx@...utronix.de>
Subject: Re: [PATCH net-next 2/2] page_pool: Convert page_pool_alloc_stats to
u64_stats_t.
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));
>
Powered by blists - more mailing lists