[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251208062943.68824-30-sj@kernel.org>
Date: Sun, 7 Dec 2025 22:29:33 -0800
From: SeongJae Park <sj@...nel.org>
To:
Cc: SeongJae Park <sj@...nel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
damon@...ts.linux.dev,
linux-kernel@...r.kernel.org,
linux-mm@...ck.org
Subject: [RFC PATCH v3 29/37] mm/damon/core: support threads type sample filter
Access-generated threads based access sample filter type is not really
being respected on the core layer. Implement the support for doing the
filtering, and committing the information when doing the online
parameters update.
Signed-off-by: SeongJae Park <sj@...nel.org>
---
mm/damon/core.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/mm/damon/core.c b/mm/damon/core.c
index 4971647d4b5e..782af39ef0c0 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -546,6 +546,10 @@ struct damon_sample_filter *damon_new_sample_filter(
filter->matching = matching;
filter->allow = allow;
INIT_LIST_HEAD(&filter->list);
+ if (filter_type == DAMON_FILTER_TYPE_THREADS) {
+ filter->tid_arr = NULL;
+ filter->nr_tids = 0;
+ }
return filter;
}
@@ -570,6 +574,10 @@ void damon_destroy_sample_filter(struct damon_sample_filter *f,
struct damon_sample_control *ctrl)
{
damon_del_sample_filter(f, ctrl);
+ if (f->type == DAMON_FILTER_TYPE_THREADS) {
+ kfree(f->tid_arr);
+ f->nr_tids = 0;
+ }
damon_free_sample_filter(f);
}
@@ -1317,6 +1325,17 @@ static int damon_commit_sample_filter_arg(struct damon_sample_filter *dst,
case DAMON_FILTER_TYPE_CPUMASK:
dst->cpumask = src->cpumask;
break;
+ case DAMON_FILTER_TYPE_THREADS:
+ if (dst->type == DAMON_FILTER_TYPE_THREADS)
+ kfree(dst->tid_arr);
+ dst->tid_arr = kmalloc_array(src->nr_tids,
+ sizeof(*dst->tid_arr), GFP_KERNEL);
+ if (!dst->tid_arr)
+ return -ENOMEM;
+ memcpy(dst->tid_arr, src->tid_arr, sizeof(*dst->tid_arr) *
+ src->nr_tids);
+ dst->nr_tids = src->nr_tids;
+ break;
default:
break;
}
@@ -2878,11 +2897,20 @@ static bool damon_sample_filter_matching(struct damon_access_report *report,
struct damon_sample_filter *filter)
{
bool matched = false;
+ int i;
switch (filter->type) {
case DAMON_FILTER_TYPE_CPUMASK:
matched = cpumask_test_cpu(report->cpu, &filter->cpumask);
break;
+ case DAMON_FILTER_TYPE_THREADS:
+ for (i = 0; i < filter->nr_tids; i++) {
+ if (report->tid != filter->tid_arr[i])
+ continue;
+ matched = true;
+ break;
+ }
+ break;
default:
break;
}
--
2.47.3
Powered by blists - more mailing lists