* [merged mm-stable] samples-damon-prcl-implement-schemes-setup.patch removed from -mm tree
@ 2025-01-14 6:44 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-01-14 6:44 UTC (permalink / raw)
To: mm-commits, sj, akpm
The quilt patch titled
Subject: samples/damon/prcl: implement schemes setup
has been removed from the -mm tree. Its filename was
samples-damon-prcl-implement-schemes-setup.patch
This patch was dropped because it was merged into the mm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: SeongJae Park <sj@kernel.org>
Subject: samples/damon/prcl: implement schemes setup
Date: Tue, 10 Dec 2024 13:50:30 -0800
Implement a proactive cold memory regions reclaiming logic of prcl sample
module using DAMOS. The logic treats memory regions that not accessed at
all for five or more seconds as cold, and reclaim those as soon as found.
Link: https://lkml.kernel.org/r/20241210215030.85675-6-sj@kernel.org
Signed-off-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
samples/damon/prcl.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
--- a/samples/damon/prcl.c~samples-damon-prcl-implement-schemes-setup
+++ a/samples/damon/prcl.c
@@ -49,6 +49,7 @@ static int damon_sample_prcl_after_aggre
static int damon_sample_prcl_start(void)
{
struct damon_target *target;
+ struct damos *scheme;
pr_info("start\n");
@@ -75,6 +76,25 @@ static int damon_sample_prcl_start(void)
ctx->callback.after_aggregation = damon_sample_prcl_after_aggregate;
+ scheme = damon_new_scheme(
+ &(struct damos_access_pattern) {
+ .min_sz_region = PAGE_SIZE,
+ .max_sz_region = ULONG_MAX,
+ .min_nr_accesses = 0,
+ .max_nr_accesses = 0,
+ .min_age_region = 50,
+ .max_age_region = UINT_MAX},
+ DAMOS_PAGEOUT,
+ 0,
+ &(struct damos_quota){},
+ &(struct damos_watermarks){},
+ NUMA_NO_NODE);
+ if (!scheme) {
+ damon_destroy_ctx(ctx);
+ return -ENOMEM;
+ }
+ damon_set_schemes(ctx, &scheme, 1);
+
return damon_start(&ctx, 1, true);
}
_
Patches currently in -mm which might be from sj@kernel.org are
docs-mm-damon-design-add-monitoring-parameters-tuning-guide.patch
docs-mm-damon-add-an-example-monitoring-intervals-tuning.patch
docs-admin-guide-mm-damon-usage-fix-and-add-missing-damos-filter-sysfs-files-on-files-hierarchy.patch
docs-admin-guide-mm-damon-start-update-snapshot-example.patch
mm-damon-explain-effective-quota-on-kernel-doc-comment.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-01-14 6:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-14 6:44 [merged mm-stable] samples-damon-prcl-implement-schemes-setup.patch removed from -mm tree Andrew Morton
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.