* [PATCH] mm/damon/core: fix quota could not be set to zero
@ 2026-09-01 10:59 Liew Rui Yan
2026-09-02 1:04 ` SJ Park
0 siblings, 1 reply; 2+ messages in thread
From: Liew Rui Yan @ 2026-09-01 10:59 UTC (permalink / raw)
To: SJ Park; +Cc: Andrew Morton, damon, linux-mm, linux-kernel, Liew Rui Yan,
stable
When the temporal quota goal tuner determines that the goal has been
achieved (score >= 10000), it sets esz_bp to zero so that the effective
quota becomes error. However, damos_set_effective_quota()
unconditionally clamps the quota to min_region_sz, preventing the quota
from ever reaching zero.
Fix this by skip the min_region_sz clamping when esz is already zero so
that the temporal tuner's intent is respected.
Fixes: 8bbde987c2b8 ("mm/damon/core: disallow time-quota setting zero esz")
Cc: <stable@vger.kernel.org> # v7.1.x
Signed-off-by: Liew Rui Yan <aethernet65535@gmail.com>
---
mm/damon/core.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/mm/damon/core.c b/mm/damon/core.c
index 53cf32f1d515..0258769b8727 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -3114,7 +3114,8 @@ static void damos_set_effective_quota(struct damon_ctx *ctx, struct damos *s)
else
throughput = PAGE_SIZE * 1024;
esz = min(throughput * quota->ms, esz);
- esz = max(ctx->min_region_sz, esz);
+ if (esz)
+ esz = max(ctx->min_region_sz, esz);
}
if (quota->sz && quota->sz < esz)
--
2.55.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-02 1:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 10:59 [PATCH] mm/damon/core: fix quota could not be set to zero Liew Rui Yan
2026-09-02 1:04 ` SJ Park
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox