From: SJ Park <sj@kernel.org>
To: Nathan Gao <zcgao@amazon.com>
Cc: SJ Park <sj@kernel.org>,
akpm@linux-foundation.org, damon@lists.linux.dev,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
baolin.wang@linux.alibaba.com, david@kernel.org,
ryan.roberts@arm.com
Subject: Re: [PATCH v4] mm/damon/ops-common: use a page-aligned address in damon_ptep_mkold()
Date: Tue, 1 Sep 2026 21:06:42 -0700 [thread overview]
Message-ID: <20260902040643.83720-1-sj@kernel.org> (raw)
In-Reply-To: <20260902031655.84721-1-zcgao@amazon.com>
On Tue, 1 Sep 2026 20:16:55 -0700 Nathan Gao <zcgao@amazon.com> wrote:
[...]
> Triggered by the full 7.1/7.2 kernel selftest suite on arm64 (EC2
> c/m6g.4xlarge). The kernel sometimes crashes at or shortly after the
> DAMON test.
>
> What the overrun does depends on the page that happens to follow the
> page table, so there is no single signature. If that page is read-only,
> the write faults in the sampling path itself:
>
> Unable to handle kernel write to read-only memory at virtual address ffff0003c5d2d000
> FSC = 0x0f: level 3 permission fault
> CM = 0, WnR = 1, TnD = 0, TagAccess = 0
> CPU: 10 UID: 0 PID: 3487 Comm: kdamond.2
> pc : contpte_test_and_clear_young_ptes+0x70/0xc0
> lr : damon_ptep_mkold+0x1e8/0x1f8
> Call trace:
> contpte_test_and_clear_young_ptes+0x70/0xc0 (P)
> damon_mkold_pmd_entry+0x150/0x170
> walk_pmd_range+0x110/0x2b0
> walk_pud_range+0x10c/0x208
> walk_pgd_range+0x134/0x258
> __walk_page_range+0x98/0x1b0
> walk_page_range_vma_unsafe+0x90/0x148
> walk_page_range_vma+0x28/0x40
> damon_va_walk_page_range+0x114/0x2b8
> damon_va_prepare_access_checks+0xec/0x1a8
> kdamond_fn+0x534/0x770
> kthread+0x128/0x138
> ret_from_fork+0x10/0x20
>
> Otherwise the page is writable, the PTE_AF clearing succeeds silently
> and the damage only surfaces later, in whatever happened to own the
> page, so the backtrace is unrelated to DAMON and differs between runs.
>
> Pass a page-aligned address to the ptep_test_and_clear_young() call in
> damon_ptep_mkold(), which is the only place DAMON can reach
> contpte_test_and_clear_young_ptes() from. Nothing else sees the aligned
> address, and r->sampling_addr itself is left as is, so the sampling and
> region bookkeeping semantics are unchanged.
Thank you for finding this nasty bug and sharing this great fix, Nathan. Also
appreicate again for your revisioning efforts that accepted my humble and picky
revisioning requests.
>
> Fixes: 6f0e1142173a ("arm64: mm: support batch clearing of the young flag for large folios")
> Cc: Baolin Wang <baolin.wang@linux.alibaba.com>
> Cc: David Hildenbrand (Arm) <david@kernel.org>
> Cc: Ryan Roberts <ryan.roberts@arm.com>
> Cc: stable@vger.kernel.org
> Signed-off-by: Nathan Gao <zcgao@amazon.com>
Reviewed-by: SJ Park <sj@kernel.org>
> ---
> V3 -> V4:
> - Align only the address that is passed to ptep_test_and_clear_young(),
> rather than @addr for the whole of damon_ptep_mkold(), so the
> mmu_notifier_clear_young() call keeps seeing the sampled address (SJ)
>
> V2 -> V3:
> - Move the alignment into damon_ptep_mkold(), instead of aligning in
> damon_va_mkold() and damon_va_young(). The ptep_test_and_clear_young()
> call in damon_ptep_mkold() is DAMON's only path to
> contpte_test_and_clear_young_ptes(), so damon_ptep_mkold() is the
> closest place in DAMON to the function that requires an aligned
> address (SJ)
>
> V1 -> V2:
> - Align inside damon_va_mkold() and damon_va_young() rather than aligning
> r->sampling_addr itself, so that sub-page sampling addresses remain
> possible for future non-PTE access check primitives (SJ)
> - Point Fixes: at 6f0e1142173a instead of 3f49584b262c, since the
> unaligned address was harmless before that commit (SJ)
> - Describe how the issue was noticed and what it does to the kernel (SJ)
>
> v3: https://lore.kernel.org/all/20260901201001.33271-1-zcgao@amazon.com/
> v2: https://lore.kernel.org/all/20260831221151.50561-1-zcgao@amazon.com/
> v1: https://lore.kernel.org/all/20260827193821.46115-1-zcgao@amazon.com/
FWIW, I insisted on this version to make clear the intention of this pin point
important fix. I still believe this minimum and clear change is better as the
hotfix.
Meanwhile, to v3, Baolin mentioned it would be prefered to keep page alignment
from callers. As I replied to the comment, that makes sense to me. And it
seems some DAMON code has unnecessary unaligned address usages that could be
problem in future. I will try to revisit such DAMON code and fix/improve as a
followup. As a result, the resulting code might more look like v3 or v2. If
you are interested, please feel free to send patches, too.
This patch is applied to damon/next [1] tree. If this patch is not added to
mm.git in short term (~2 days?), I will ask mm.git maintainer (Andrew Morton)
to pick this. So, no action from your side is needed for now. If it seems I
also forgot doing that or you cannot wait for my action, please feel free to
directly ask that to Andrew.
[1] https://origin.kernel.org/doc/html/latest/mm/damon/maintainer-profile.html#scm-trees
Thanks,
SJ
[...]
next prev parent reply other threads:[~2026-09-02 4:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-02 3:16 Nathan Gao
2026-09-02 4:06 ` SJ Park [this message]
2026-09-02 5:27 ` Baolin Wang
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=20260902040643.83720-1-sj@kernel.org \
--to=sj@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=damon@lists.linux.dev \
--cc=david@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ryan.roberts@arm.com \
--cc=zcgao@amazon.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®