From: "Michael S. Tsirkin" <mst@redhat.com>
To: Sourav Panda <souravpanda@google.com>
Cc: muchun.song@linux.dev, osalvador@suse.de,
akpm@linux-foundation.org, david@kernel.org, ljs@kernel.org,
liam@infradead.org, vbabka@kernel.org, rppt@kernel.org,
surenb@google.com, mhocko@suse.com, mhklinux@outlook.com,
fvdl@google.com, gthelen@google.com, mike.kravetz@oracle.com,
pasha.tatashin@soleen.com, rientjes@google.com, riel@surriel.com,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-fsdevel@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH 6/6] mm/hugetlb: support free page reporting for cached hugepages
Date: Tue, 7 Jul 2026 03:18:23 -0400 [thread overview]
Message-ID: <20260707031039-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20260707064235.1386552-7-souravpanda@google.com>
Thanks for the patch! Yet something to improve:
On Tue, Jul 07, 2026 at 06:42:35AM +0000, Sourav Panda wrote:
> Implement free page reporting for the HugeTLB dynamic cache.
>
> Register HugeTLB hstates with the page reporting framework if they
> support caching.
>
> When pages are added to the cache (either via recycling in
> free_huge_folio or direct population via sysfs nr_cached_hugepages),
> trigger a page reporting cycle.
>
> Page reporting isolates pages from the cache list, reports them to the
> hypervisor via virtio-balloon, and then drains them back to the cache
> list, marking them as reported (HPG_reported).
>
> If a page is allocated from the cache, or reclaimed, clear the reported
> flag.
>
> Signed-off-by: Sourav Panda <souravpanda@google.com>
> ---
> include/linux/hugetlb.h | 27 +++++++
> include/linux/page_reporting.h | 1 +
> mm/hugetlb.c | 125 +++++++++++++++++++++++++++++++++
> mm/page_reporting.c | 10 ++-
> mm/page_reporting.h | 6 ++
> 5 files changed, 163 insertions(+), 6 deletions(-)
>
> diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h
> index e882c99780b6..bde23edcb803 100644
> --- a/include/linux/hugetlb.h
> +++ b/include/linux/hugetlb.h
> @@ -587,6 +587,7 @@ enum hugetlb_page_flags {
> HPG_cma,
> #ifdef CONFIG_HUGETLB_CACHE
> HPG_cached,
> + HPG_reported,
> #endif
> __NR_HPAGEFLAGS,
> };
> @@ -650,10 +651,14 @@ HPAGEFLAG(RawHwpUnreliable, raw_hwp_unreliable)
> HPAGEFLAG(Cma, cma)
> #ifdef CONFIG_HUGETLB_CACHE
> HPAGEFLAG(Cached, cached)
> +HPAGEFLAG(Reported, reported)
> #else
> static inline bool folio_test_hugetlb_cached(const struct folio *folio) { return false; }
> static inline void folio_clear_hugetlb_cached(struct folio *folio) { }
> static inline void folio_set_hugetlb_cached(struct folio *folio) { }
> +static inline bool folio_test_hugetlb_reported(const struct folio *folio) { return false; }
> +static inline void folio_clear_hugetlb_reported(struct folio *folio) { }
> +static inline void folio_set_hugetlb_reported(struct folio *folio) { }
> #endif
>
> #ifdef CONFIG_HUGETLB_PAGE
> @@ -1093,6 +1098,20 @@ void hugetlb_unregister_node(struct node *node);
> */
> bool is_raw_hwpoison_page_in_hugepage(struct page *page);
>
> +#ifdef CONFIG_HUGETLB_CACHE
> +struct page_reporting_dev_info;
> +int hugetlb_page_reporting(struct page_reporting_dev_info *prdev,
> + struct scatterlist *sgl);
> +#else /* !CONFIG_HUGETLB_CACHE */
> +struct page_reporting_dev_info;
> +struct scatterlist;
> +static inline int hugetlb_page_reporting(struct page_reporting_dev_info *prdev,
> + struct scatterlist *sgl)
> +{
> + return 0;
> +}
> +#endif /* CONFIG_HUGETLB_CACHE */
> +
> static inline unsigned long huge_page_mask_align(struct file *file)
> {
> return PAGE_MASK & ~huge_page_mask(hstate_file(file));
> @@ -1311,6 +1330,14 @@ static inline bool hugetlbfs_pagecache_present(
> static inline void hugetlb_bootmem_alloc(void)
> {
> }
> +
> +struct page_reporting_dev_info;
> +struct scatterlist;
> +static inline int hugetlb_page_reporting(struct page_reporting_dev_info *prdev,
> + struct scatterlist *sgl)
> +{
> + return 0;
> +}
> #endif /* CONFIG_HUGETLB_PAGE */
>
why are there twice the stubs? And should this not depend on CONFIG_PAGE_REPORTING too?
> static inline spinlock_t *huge_pte_lock(struct hstate *h,
> diff --git a/include/linux/page_reporting.h b/include/linux/page_reporting.h
> index 9d4ca5c218a0..bd5a5a293dc3 100644
> --- a/include/linux/page_reporting.h
> +++ b/include/linux/page_reporting.h
> @@ -27,4 +27,5 @@ struct page_reporting_dev_info {
> /* Tear-down and bring-up for page reporting devices */
> void page_reporting_unregister(struct page_reporting_dev_info *prdev);
> int page_reporting_register(struct page_reporting_dev_info *prdev);
> +extern unsigned int page_reporting_order;
again why twice.
> #endif /*_LINUX_PAGE_REPORTING_H */
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index 1bc0198a695c..110c566efc3b 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -46,7 +46,9 @@
> #include <linux/io.h>
> #include <linux/node.h>
> #include <linux/page_owner.h>
> +#include <linux/page_reporting.h>
> #include "internal.h"
> +#include "page_reporting.h"
> #include "hugetlb_vmemmap.h"
> #include "hugetlb_cma.h"
> #include "hugetlb_internal.h"
> @@ -1414,6 +1416,7 @@ static void hugetlb_cache_remove(struct hstate *h, struct folio *folio, bool to_
> list_del_init(&folio->lru);
> folio_clear_hugetlb_freed(folio);
> folio_clear_hugetlb_cached(folio);
> + folio_clear_hugetlb_reported(folio);
> h->nr_cached_hugepages--;
> h->nr_cached_hugepages_node[nid]--;
> if (to_surplus) {
> @@ -1806,6 +1809,7 @@ void free_huge_folio(struct folio *folio)
> !folio_test_hwpoison(folio)) {
> arch_clear_hugetlb_flags(folio);
> hugetlb_cache_add(h, folio, true);
> + page_reporting_notify_free(h->order);
> spin_unlock_irqrestore(&hugetlb_lock, flags);
> return;
> }
> @@ -4231,6 +4235,7 @@ static int adjust_cached_huge_pages(struct hstate *h, long count, bool is_delta,
> account_new_hugetlb_folio(h, folio);
>
> hugetlb_cache_add(h, folio, false);
> + page_reporting_notify_free(h->order);
> spin_unlock_irq(&hugetlb_lock);
> cond_resched();
> }
> @@ -4310,6 +4315,7 @@ static int adjust_cached_huge_pages(struct hstate *h, long count, bool is_delta,
> account_new_hugetlb_folio(h, folio);
>
> hugetlb_cache_add(h, folio, false);
> + page_reporting_notify_free(h->order);
> spin_unlock_irq(&hugetlb_lock);
> cond_resched();
> }
> @@ -7763,3 +7769,122 @@ void fixup_hugetlb_reservations(struct vm_area_struct *vma)
> if (is_vm_hugetlb_page(vma))
> clear_vma_resv_huge_pages(vma);
> }
> +
> +#ifdef CONFIG_HUGETLB_CACHE
> +static void page_reporting_drain_hugetlb(struct hstate *h,
> + struct scatterlist *sgl, unsigned int nents, bool reported)
> +{
> + struct scatterlist *sg = sgl;
> + unsigned int left = nents;
> +
> + spin_lock_irq(&hugetlb_lock);
> + do {
> + struct page *page = sg_page(sg);
> + struct folio *folio = page_folio(page);
> +
> + hugetlb_cache_add(h, folio, false);
> +
> + if (reported)
> + folio_set_hugetlb_reported(folio);
> + } while (--left && (sg = sg_next(sg)));
> + spin_unlock_irq(&hugetlb_lock);
> +
> + sg_init_table(sgl, nents);
> +}
> +
> +static int hugetlb_page_reporting_cycle(struct page_reporting_dev_info *prdev,
> + struct hstate *h, int nid,
> + struct scatterlist *sgl, unsigned int *offset)
> +{
> + struct list_head *list = &h->hugepage_cache_lists[nid];
> + unsigned int page_len = huge_page_size(h);
> + struct folio *folio, *next;
> + long budget = 100; /* Limit */
why 100? and "Limit"? What kind of comment is this?
> + int err = 0;
> +
> + if (list_empty(list))
> + return err;
> +
> + spin_lock_irq(&hugetlb_lock);
> +
> + list_for_each_entry_safe(folio, next, list, lru) {
> + if (folio_test_hugetlb_reported(folio))
> + continue;
> +
> + if (budget < 0) {
> + atomic_set(&prdev->state, PAGE_REPORTING_REQUESTED);
> + break;
> + }
> +
> + if (*offset) {
> + /* Isolate */
> + hugetlb_cache_remove(h, folio, false);
are you sure this is right? in patch 2 it is:
if (folio_test_hugetlb_cached(folio) && list_empty(&folio->lru))
return -EBUSY;
and hugetlb_cache_remove clears HPG_cached.
> +
> + --(*offset);
> + sg_set_page(&sgl[*offset], &folio->page, page_len, 0);
> + continue;
> + }
> +
> + spin_unlock_irq(&hugetlb_lock);
> +
> + err = prdev->report(prdev, sgl, PAGE_REPORTING_CAPACITY);
> + if (!err) {
> + pr_info("HugeTLB page reporting: reported %u pages of size %luKB\n",
> + PAGE_REPORTING_CAPACITY, huge_page_size(h) / 1024);
seriously?
> + }
> +
> + *offset = PAGE_REPORTING_CAPACITY;
> + budget--;
> +
> + page_reporting_drain_hugetlb(h, sgl, PAGE_REPORTING_CAPACITY, !err);
> +
> + spin_lock_irq(&hugetlb_lock);
> +
> + if (list_empty(list))
> + break;
> + next = list_first_entry(list, struct folio, lru);
> +
> + if (err)
> + break;
> + }
> +
> + spin_unlock_irq(&hugetlb_lock);
> + return err;
> +}
> +
> +int hugetlb_page_reporting(struct page_reporting_dev_info *prdev,
> + struct scatterlist *sgl)
> +{
> + struct hstate *h;
> + int err = 0;
> + int nid;
> +
> + for_each_hstate(h) {
> + if (h->order < page_reporting_order)
> + continue;
> +
> + for_each_online_node(nid) {
> + unsigned int offset = PAGE_REPORTING_CAPACITY;
> +
> + err = hugetlb_page_reporting_cycle(prdev, h, nid, sgl, &offset);
> + if (err)
> + return err;
> +
> + /* Report leftovers */
> + unsigned int leftover = PAGE_REPORTING_CAPACITY - offset;
> +
> + if (leftover) {
> + struct scatterlist *sg = &sgl[offset];
> +
> + err = prdev->report(prdev, sg, leftover);
> + page_reporting_drain_hugetlb(h, sg, leftover, !err);
> + if (err)
> + return err;
> + pr_info("HugeTLB page reporting: reported %u pages of size %luKB\n",
> + leftover, huge_page_size(h) / 1024);
again
> + }
> + }
> + }
> + return 0;
> +}
> +#endif
> diff --git a/mm/page_reporting.c b/mm/page_reporting.c
> index 7418f2e500bb..882496b8b2c9 100644
> --- a/mm/page_reporting.c
> +++ b/mm/page_reporting.c
> @@ -2,6 +2,7 @@
> #include <linux/mm.h>
> #include <linux/mmzone.h>
> #include <linux/page_reporting.h>
> +#include <linux/hugetlb.h>
> #include <linux/gfp.h>
> #include <linux/export.h>
> #include <linux/module.h>
> @@ -50,12 +51,6 @@ EXPORT_SYMBOL_GPL(page_reporting_order);
> #define PAGE_REPORTING_DELAY (2 * HZ)
> static struct page_reporting_dev_info __rcu *pr_dev_info __read_mostly;
>
> -enum {
> - PAGE_REPORTING_IDLE = 0,
> - PAGE_REPORTING_REQUESTED,
> - PAGE_REPORTING_ACTIVE
> -};
> -
> /* request page reporting */
> static void
> __page_reporting_request(struct page_reporting_dev_info *prdev)
> @@ -334,6 +329,9 @@ static void page_reporting_process(struct work_struct *work)
> break;
> }
>
> + if (!err)
> + err = hugetlb_page_reporting(prdev, sgl);
> +
> kfree(sgl);
> err_out:
> /*
> diff --git a/mm/page_reporting.h b/mm/page_reporting.h
> index c51dbc228b94..74e05af4bac1 100644
> --- a/mm/page_reporting.h
> +++ b/mm/page_reporting.h
> @@ -11,6 +11,12 @@
> #include <linux/scatterlist.h>
>
> #ifdef CONFIG_PAGE_REPORTING
> +enum {
> + PAGE_REPORTING_IDLE = 0,
> + PAGE_REPORTING_REQUESTED,
> + PAGE_REPORTING_ACTIVE
> +};
> +
> DECLARE_STATIC_KEY_FALSE(page_reporting_enabled);
> extern unsigned int page_reporting_order;
> void __page_reporting_notify(void);
> --
> 2.55.0.rc0.799.gd6f94ed593-goog
next prev parent reply other threads:[~2026-07-07 7:18 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-07 6:42 [RFC PATCH 0/6] mm/hugetlb: Dynamic, NUMA-aware HugePage Cache & Free Page Reporting Sourav Panda
2026-07-07 6:42 ` [PATCH 1/6] mm/hugetlb: add Kconfig and basic cache infrastructure Sourav Panda
2026-07-07 6:42 ` [PATCH 2/6] mm/hugetlb: implement cache recycling and allocation Sourav Panda
2026-07-07 6:42 ` [PATCH 3/6] mm/hugetlb: add sysfs interfaces for cache Sourav Panda
2026-07-07 6:42 ` [PATCH 4/6] mm/hugetlb: add memory shrinker " Sourav Panda
2026-07-07 6:42 ` [PATCH 5/6] Documentation/admin-guide/mm/hugetlbpage.rst: document cache interfaces Sourav Panda
2026-07-07 6:42 ` [PATCH 6/6] mm/hugetlb: support free page reporting for cached hugepages Sourav Panda
2026-07-07 7:18 ` Michael S. Tsirkin [this message]
2026-07-07 10:18 ` Michael S. Tsirkin
2026-07-07 6:56 ` [RFC PATCH 0/6] mm/hugetlb: Dynamic, NUMA-aware HugePage Cache & Free Page Reporting Michael S. Tsirkin
2026-07-07 7:21 ` Sourav Panda
2026-07-07 7:29 ` David Hildenbrand (Arm)
2026-07-07 8:09 ` Muchun Song
2026-07-07 10:25 ` Michael S. Tsirkin
2026-07-07 10:28 ` David Hildenbrand (Arm)
2026-07-07 11:06 ` Lorenzo Stoakes
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260707031039-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=david@kernel.org \
--cc=fvdl@google.com \
--cc=gthelen@google.com \
--cc=liam@infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mhklinux@outlook.com \
--cc=mhocko@suse.com \
--cc=mike.kravetz@oracle.com \
--cc=muchun.song@linux.dev \
--cc=osalvador@suse.de \
--cc=pasha.tatashin@soleen.com \
--cc=riel@surriel.com \
--cc=rientjes@google.com \
--cc=rppt@kernel.org \
--cc=souravpanda@google.com \
--cc=surenb@google.com \
--cc=vbabka@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox