[RFC PATCH 4/9] mm/damon/core: use damos_quota_is_set() in damos_adjust_quota()
From: SJ Park
Date: Sat Sep 12 2026 - 16:10:18 EST
damos_adjust_quota() is manually checking if the user set the DAMOS
quota. There is a dedicated helper, damos_quota_is_set(), for the
purpose. Use the helper.
Signed-off-by: SJ Park <sj@xxxxxxxxxx>
---
mm/damon/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/damon/core.c b/mm/damon/core.c
index cf10f6d725c19..dd27068cb83e3 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -3344,7 +3344,7 @@ static void damos_adjust_quota(struct damon_ctx *c, struct damos *s)
unsigned long cumulated_sz, cached_esz;
unsigned int score, max_score = 0;
- if (!quota->ms && !quota->sz && list_empty("a->goals))
+ if (!damos_quota_is_set(quota))
return;
/* First charge window */
--
2.47.3