From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org,yangyingliang@huawei.com,sj@kernel.org,akpm@linux-foundation.org
Subject: [merged mm-stable] mm-damon-core-receive-addr_unit-on-damon_set_region_biggest_system_ram_default-fix.patch removed from -mm tree
Date: Sat, 28 Mar 2026 17:41:36 -0700 [thread overview]
Message-ID: <20260329004137.4F856C4CEF7@smtp.kernel.org> (raw)
The quilt patch titled
Subject: mm/damon/core: fix wrong damon_set_regions() argument
has been removed from the -mm tree. Its filename was
mm-damon-core-receive-addr_unit-on-damon_set_region_biggest_system_ram_default-fix.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: mm/damon/core: fix wrong damon_set_regions() argument
Date: Fri, 13 Mar 2026 16:49:08 -0700
The third argument is the length of the second parameter. But addr_unit
is wrongly being passed. Fix it.
Link: https://lkml.kernel.org/r/20260314001854.79623-1-sj@kernel.org
Signed-off-by: SeongJae Park <sj@kernel.org>
Cc: Yang yingliang <yangyingliang@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/damon/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/damon/core.c~mm-damon-core-receive-addr_unit-on-damon_set_region_biggest_system_ram_default-fix
+++ a/mm/damon/core.c
@@ -3136,7 +3136,7 @@ int damon_set_region_biggest_system_ram_
addr_range.start = *start;
addr_range.end = *end;
- return damon_set_regions(t, &addr_range, addr_unit, min_region_sz);
+ return damon_set_regions(t, &addr_range, 1, min_region_sz);
}
/*
_
Patches currently in -mm which might be from sj@kernel.org are
mm-damon-sysfs-dealloc-repeat_call_control-if-damon_call-fails.patch
reply other threads:[~2026-03-29 0:41 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260329004137.4F856C4CEF7@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=mm-commits@vger.kernel.org \
--cc=sj@kernel.org \
--cc=yangyingliang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.