All of lore.kernel.org
 help / color / mirror / Atom feed
From: SeongJae Park <sj@kernel.org>
To: sashiko-bot@kernel.org
Cc: SeongJae Park <sj@kernel.org>, damon@lists.linux.dev
Subject: Re: [PATCH 6.12.y] mm/damon/core: disallow time-quota setting zero esz
Date: Wed,  6 May 2026 09:59:10 -0700	[thread overview]
Message-ID: <20260506165910.10452-1-sj@kernel.org> (raw)
In-Reply-To: <20260504180216.17E4AC2BCB8@smtp.kernel.org>

On Mon, 04 May 2026 18:02:15 +0000 sashiko-bot@kernel.org wrote:

> Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
> - [High] The patch masks a severe pre-existing integer overflow in the time quota throughput calculation, which permanently throttles the scheme instead of fixing the root cause.
> - [Medium] The patch forces the effective size quota to be at least DAMON_MIN_REGION when a time quota is configured, breaking the ability of quota goals to intentionally pause the scheme.

No issue for this patch.  Please read below for more details.

> --
> 
> commit 648433abd4b11fd3f4a77018e7e47105abac1ce7
> Author: SeongJae Park <sj@kernel.org>
> 
> mm/damon/core: disallow time-quota setting zero esz
> 
> When the throughput of a DAMOS scheme is very slow, the DAMOS time quota can
> make the effective size quota smaller than the minimum region size, preventing
> actions from being applied. This commit fixes the issue by setting the time
> quota-modified effective size quota to at least DAMON_MIN_REGION.
> 
> Link: https://lore.kernel.org/20260407003153.79589-1-sj@kernel.org
> Link: https://lore.kernel.org/20260405192504.110014-1-sj@kernel.org [1]
> 
> > diff --git a/mm/damon/core.c b/mm/damon/core.c
> > index ed2b750231810..69f8244324b36 100644
> > --- a/mm/damon/core.c
> > +++ b/mm/damon/core.c
> > @@ -1577,6 +1577,7 @@ static void damos_set_effective_quota(struct damos_quota *quota)
> >  			esz = min(throughput * quota->ms, esz);
> >  		else
> >  			esz = throughput * quota->ms;
> > +		esz = max(DAMON_MIN_REGION, esz);
> 
> Does this cause a regression by breaking the ability of quota goals to
> intentionally pause the scheme?
> 
> If a dynamic quota goal determines that actions should be paused and requests
> an esz smaller than DAMON_MIN_REGION, this max() macro forcibly overrides it
> and bumps the quota back to DAMON_MIN_REGION.
> 
> This causes the scheme to process at least 1 page per charge window instead
> of fully pausing.
> 
> Could the max() boundary be applied exclusively to the throughput-derived quota
> before it is min()'ed with the goal-derived quota?

No, this should be fine.  This is not a very technically intended behavior, but
letting DAMOS process one page per interval only when time quota is set should
make no real issue.  Let's keep this behavior.

> 
> Additionally, does this code mask a pre-existing integer overflow regression
> in the throughput calculation?
> 
> Looking earlier in damos_set_effective_quota():
> 
> 	if (quota->total_charged_ns)
> 		throughput = quota->total_charged_sz * 1000000 /
> 			quota->total_charged_ns;
> 
> Because total_charged_sz and total_charged_ns are continuously accumulated
> over the scheme's lifetime, total_charged_sz * 1000000 will overflow an
> unsigned long on 64-bit systems after processing around 18.4 TB of memory.
> 
> When the numerator overflows, it wraps modulo 2^64 while total_charged_ns
> continues to grow. This causes the calculated throughput to collapse to
> near-zero.
> 
> Also, on 32-bit systems, total_charged_ns stores nanoseconds and overflows
> a 32-bit unsigned long after 4.29 seconds of accumulated action time, causing
> erratic throughput calculations.
> 
> By clamping the output to DAMON_MIN_REGION here, the patch seems to permanently
> throttle the scheme to process exactly 1 page per charge window once the
> overflow occurs, rather than fixing the underlying throughput collapse.

Good catch, but not this patch's fault.  Refer to my previous answer [1] to a
similar Sashiko question.

[1] https://lore.kernel.org/20260505150012.29007-1-sj@kernel.org


Thanks,
SJ

[...]

      reply	other threads:[~2026-05-06 16:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-03 11:52 FAILED: patch "[PATCH] mm/damon/core: disallow time-quota setting zero esz" failed to apply to 6.12-stable tree gregkh
2026-05-04 12:52 ` [PATCH 6.12.y] mm/damon/core: disallow time-quota setting zero esz SeongJae Park
2026-05-04 18:02   ` sashiko-bot
2026-05-06 16:59     ` SeongJae Park [this message]

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=20260506165910.10452-1-sj@kernel.org \
    --to=sj@kernel.org \
    --cc=damon@lists.linux.dev \
    --cc=sashiko-bot@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.