From: "David Hildenbrand (Arm)" <david@kernel.org>
To: Chengfeng Ye <nicoyip.dev@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
Xu Xin <xu.xin16@zte.com.cn>,
Chengming Zhou <chengming.zhou@linux.dev>,
Hugh Dickins <hughd@google.com>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm/ksm: mark migration stores with WRITE_ONCE()
Date: Mon, 24 Aug 2026 12:39:44 +0200 [thread overview]
Message-ID: <5501d110-9f04-4a61-b0d1-16898910eb93@kernel.org> (raw)
In-Reply-To: <20260822163846.3747787-1-nicoyip.dev@gmail.com>
On 8/22/26 18:38, Chengfeng Ye wrote:
> ksm_get_folio() deliberately samples stable_node->kpfn and
> folio->mapping without taking the folio lock because the KSM folio may be
> migrated concurrently. folio_migrate_ksm() updates the same state using
> plain assignments.
>
> The reader can load the old kpfn, then the migrator can store the new kpfn,
> execute smp_wmb(), and clear the old folio's mapping before the reader
> checks that mapping. Thus the initial kpfn load can overlap its update and
> the subsequent mapping load can overlap the clear, with no common lock.
> This leaves marked READ_ONCE() accesses racing with plain stores.
>
> The kernel reported:
>
> BUG: KCSAN: data-race in folio_migrate_ksm / ksm_get_folio
>
> read (marked) to 0xffff8ce401421330 of 8 bytes by task 48 on cpu 3:
> ksm_get_folio+0x7f/0x2a0
> ksm_scan_thread+0x1635/0x3330
> kthread+0x1af/0x1f0
>
> write to 0xffff8ce401421330 of 8 bytes by task 102 on cpu 1:
> folio_migrate_ksm+0x6a/0xd0
> folio_migrate_flags+0x193/0x420
> __migrate_folio.isra.0+0x162/0x1a0
> migrate_folio+0x4c/0x70
> move_to_new_folio+0xd6/0x170
>
> Use WRITE_ONCE() for both stores to pair them with the existing lockless
> reads. This preserves the existing smp_wmb()/smp_rmb() migration protocol
> and control flow while preventing compiler transformations of the shared
> accesses.
>
We want a Fixes: tag, can you dig?
I am not convinced CC stable is warranted ... but certainly wouldn't hurt here.
> Signed-off-by: Chengfeng Ye <nicoyip.dev@gmail.com>
> ---
> mm/ksm.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/mm/ksm.c b/mm/ksm.c
> index b4142746777e..bec6fea0fdb4 100644
> --- a/mm/ksm.c
> +++ b/mm/ksm.c
> @@ -1116,7 +1116,8 @@ static inline void folio_set_stable_node(struct folio *folio,
> struct ksm_stable_node *stable_node)
> {
> VM_WARN_ON_FOLIO(folio_test_anon(folio) && PageAnonExclusive(&folio->page), folio);
> - folio->mapping = (void *)((unsigned long)stable_node | FOLIO_MAPPING_KSM);
> + WRITE_ONCE(folio->mapping,
> + (void *)((unsigned long)stable_node | FOLIO_MAPPING_KSM));
That also matches what we do in folio_move_anon_rmap()/__folio_set_anon().
> }
>
> #ifdef CONFIG_SYSFS
> @@ -3318,7 +3319,7 @@ void folio_migrate_ksm(struct folio *newfolio, struct folio *folio)
> stable_node = folio_stable_node(folio);
> if (stable_node) {
> VM_BUG_ON_FOLIO(stable_node->kpfn != folio_pfn(folio), folio);
> - stable_node->kpfn = folio_pfn(newfolio);
> + WRITE_ONCE(stable_node->kpfn, folio_pfn(newfolio));
That makes sense as well!
Acked-by: David Hildenbrand (Arm) <david@kernel.org>
--
Cheers,
David
next prev parent reply other threads:[~2026-08-24 10:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-22 16:38 Chengfeng Ye
2026-08-23 13:10 ` xu.xin16
2026-08-24 10:39 ` David Hildenbrand (Arm) [this message]
2026-08-24 11:26 ` Chengfeng Ye
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=5501d110-9f04-4a61-b0d1-16898910eb93@kernel.org \
--to=david@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=chengming.zhou@linux.dev \
--cc=hughd@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=nicoyip.dev@gmail.com \
--cc=xu.xin16@zte.com.cn \
/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®