[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1643764336-63864-9-git-send-email-jdamato@fastly.com>
Date: Tue, 1 Feb 2022 17:12:14 -0800
From: Joe Damato <jdamato@...tly.com>
To: netdev@...r.kernel.org, kuba@...nel.org,
ilias.apalodimas@...aro.org, davem@...emloft.net, hawk@...nel.org
Cc: Joe Damato <jdamato@...tly.com>
Subject: [net-next v3 08/10] page_pool: Add stat tracking cache refill
Add a stat tracking succesfull allocations which triggered a refill.
Signed-off-by: Joe Damato <jdamato@...tly.com>
---
include/net/page_pool.h | 1 +
net/core/page_pool.c | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/include/net/page_pool.h b/include/net/page_pool.h
index ed2bc73..4991109 100644
--- a/include/net/page_pool.h
+++ b/include/net/page_pool.h
@@ -149,6 +149,7 @@ struct page_pool_stats {
u64 empty; /* failed refills due to empty ptr ring, forcing
* slow path allocation
*/
+ u64 refill; /* allocations via successful refill */
} alloc;
};
diff --git a/net/core/page_pool.c b/net/core/page_pool.c
index 9d20b12..00adab5 100644
--- a/net/core/page_pool.c
+++ b/net/core/page_pool.c
@@ -167,8 +167,10 @@ static struct page *page_pool_refill_alloc_cache(struct page_pool *pool)
} while (pool->alloc.count < PP_ALLOC_CACHE_REFILL);
/* Return last page */
- if (likely(pool->alloc.count > 0))
+ if (likely(pool->alloc.count > 0)) {
page = pool->alloc.cache[--pool->alloc.count];
+ page_pool_stat_alloc_inc(refill);
+ }
return page;
}
--
2.7.4
Powered by blists - more mailing lists