[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250709004729.17252-1-bijan311@gmail.com>
Date: Tue, 8 Jul 2025 19:47:29 -0500
From: Bijan Tabatabai <bijan311@...il.com>
To: linux-mm@...ck.org,
damon@...ts.linux.dev,
linux-kernel@...r.kernel.org
Cc: sj@...nel.org,
akpm@...ux-foundation.org,
Bijan Tabatabai <bijantabatab@...ron.com>,
stable@...r.kernel.org
Subject: [PATCH] mm/damon/core: Commit damos->target_nid
From: Bijan Tabatabai <bijantabatab@...ron.com>
When committing new scheme parameters from the sysfs, the target_nid
field of the damos struct would not be copied. This would result in the
target_nid field to retain its original value, despite being updated in
the sysfs interface.
This patch fixes this issue by copying target_nid in damos_commit().
Cc: stable@...r.kernel.org
Fixes: 83dc7bbaecae ("mm/damon/sysfs: use damon_commit_ctx()")
Signed-off-by: Bijan Tabatabai <bijantabatab@...ron.com>
---
mm/damon/core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/mm/damon/core.c b/mm/damon/core.c
index 5357a18066b0..ab28ab5d08f6 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -978,6 +978,7 @@ static int damos_commit(struct damos *dst, struct damos *src)
return err;
dst->wmarks = src->wmarks;
+ dst->target_nid = src->target_nid;
err = damos_commit_filters(dst, src);
return err;
--
2.43.0
Powered by blists - more mailing lists