mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "David Hildenbrand (Arm)" <david@kernel.org>
To: pratmal@google.com, Andrew Morton <akpm@linux-foundation.org>,
	Vlastimil Babka <vbabka@kernel.org>
Cc: Greg Thelen <gthelen@google.com>,
	Suren Baghdasaryan <surenb@google.com>,
	Michal Hocko <mhocko@suse.com>,
	Brendan Jackman <jackmanb@google.com>,
	Johannes Weiner <hannes@cmpxchg.org>, Zi Yan <ziy@nvidia.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH] mm/page_reporting: Add page_reporting_delay sysctl
Date: Wed, 15 Jul 2026 14:59:49 +0200	[thread overview]
Message-ID: <70392f94-137a-4220-8ff5-64dd874cf5d9@kernel.org> (raw)
In-Reply-To: <20260714171456.2350037-1-pratmal@google.com>

On 7/14/26 19:14, pratmal@google.com wrote:
> From: Pratyush Mallick <pratmal@google.com>
> 
> Currently, the free page reporting daemon uses a hardcoded delay of
> (2 HZ) between reporting intervals. While this is a reasonable
> default, it lacks the flexibility to adapt to varying guest workloads.
> 
> A low delay allows aggressive memory reclamation, returning unused
> pages to the hypervisor as quickly as possible. However, during spiky
> allocation/free churn, this immediate reporting can lead to a severe
> performance penalty (nested page faults) as the guest re-allocates memory
> that the hypervisor has just unmapped. In these scenarios, there is benefit
> from increasing the delay to batch free pages over a longer window,
> absorbing the churn without hypercall and re-fault overhead.
> 
> This patch refactors the delay into a dynamically tunable sysctl,
> /proc/sys/vm/page_reporting_delay, measured in milliseconds. The value
> defaults to 2000ms to precisely match the original (2 HZ) behavior.
> If the sysctl is modified across reporting windows, the sysctl handler
> immediately issues a mod_delayed_work() to honor the new configuration
> without waiting for the prior timeout to lapse.
> 
> Signed-off-by: Pratyush Mallick <pratmal@google.com>
> ---
> 
> Sending this as an RFC to get thoughts on exposing this delay as a sysctl. 
>                                                                            
> Benchmark Results:
> We kill a process allocated with 10GB memory within the VM and mesure the
> time it takes to report all the memory to host as well the delay in
> initiating the reporting.
>  
> default(2s delay): https://drive.google.com/file/d/1Ouxm_raj4xPNthc_ryk0Mdbo-c_zXKiP/view?usp=sharing
> Tuned to 0s delay: https://drive.google.com/file/d/1mk58LPiYgIF4Yk6kmX5JHplhrwIw0NbC/view?usp=sharing

[...]

Hi!

>  
>  #include "page_reporting.h"
> @@ -47,15 +48,44 @@ MODULE_PARM_DESC(page_reporting_order, "Set page reporting order");
>   */
>  EXPORT_SYMBOL_GPL(page_reporting_order);
>  
> -#define PAGE_REPORTING_DELAY	(2 * HZ)
> -static struct page_reporting_dev_info __rcu *pr_dev_info __read_mostly;
> -

Why are you moving that?

>  enum {
>  	PAGE_REPORTING_IDLE = 0,
>  	PAGE_REPORTING_REQUESTED,
>  	PAGE_REPORTING_ACTIVE
>  };
>  
> +static unsigned int page_reporting_delay = 2000;

Maybe "2 * MSEC_PER_SEC;"

Would we want to call that page_reporting_delay_ms to make it clearer what we
are dealing with?

> +static struct page_reporting_dev_info __rcu *pr_dev_info __read_mostly;
> +
> +static int page_reporting_delay_sysctl(const struct ctl_table *table, int write,
> +				       void *buffer, size_t *lenp, loff_t *ppos)

We prefer two tabs here in MM land.

> +{
> +	int ret;
> +	struct page_reporting_dev_info *prdev;
> +
> +	ret = proc_dointvec(table, write, buffer, lenp, ppos);
> +	if (ret < 0 || !write)
> +		return ret;

Would we want to cap it at reasonable values?

> +
> +	rcu_read_lock();
> +	prdev = rcu_dereference(pr_dev_info);
> +	if (prdev && atomic_read(&prdev->state) == PAGE_REPORTING_REQUESTED)
> +		mod_delayed_work(system_wq, &prdev->work, msecs_to_jiffies(page_reporting_delay));
> +	rcu_read_unlock();

Is that really required? Seems unnecessary given that we expect something in the
range of a couple of seconds max.

-- 
Cheers,

David

  reply	other threads:[~2026-07-15 12:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-14 17:14 pratmal
2026-07-15 12:59 ` David Hildenbrand (Arm) [this message]
2026-07-16  3:30   ` Anshuman Khandual

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=70392f94-137a-4220-8ff5-64dd874cf5d9@kernel.org \
    --to=david@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=gthelen@google.com \
    --cc=hannes@cmpxchg.org \
    --cc=jackmanb@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=pratmal@google.com \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    --cc=ziy@nvidia.com \
    /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

Powered by JetHome