Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites
@ 2026-06-25  7:18 Hui Zhu
  2026-06-25 11:53 ` David Hildenbrand (Arm)
  0 siblings, 1 reply; 4+ messages in thread
From: Hui Zhu @ 2026-06-25  7:18 UTC (permalink / raw)
  To: Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
	Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
	Suren Baghdasaryan, Michal Hocko, Kairui Song, Qi Zheng,
	Shakeel Butt, Barry Song, Axel Rasmussen, Yuanchu Xie, Wei Xu,
	linux-mm, linux-kernel
  Cc: Hui Zhu

From: Hui Zhu <zhuhui@kylinos.cn>

KCSAN reports a data race between page_to_nid()/folio_pgdat() reading
page->flags and folio_trylock()/folio_lock() concurrently doing
test_and_set_bit_lock(PG_locked, ...) on the same word, e.g.:

  BUG: KCSAN: data-race in __lruvec_stat_mod_folio / shmem_get_folio_gfp

The node id and zone id occupy fixed bit-ranges of page->flags that
are set once at page init and never modified afterwards, so they can
never overlap with the low PG_locked/PG_waiters bits touched by the
folio lock path.

ASSERT_EXCLUSIVE_BITS(mdf.f, ...) inside memdesc_nid()/memdesc_zonenum()
checks a by-value copy of the flags word, not the actual shared
page->flags/folio->flags being modified concurrently, so it doesn't
reliably assert anything about the real race. Move the assertion to
page_to_nid(), folio_nid(), page_zonenum() and folio_zonenum(), where
flags is dereferenced directly from the page/folio.

On CONFIG_NUMA=n, NODES_MASK is 0 and the old memdesc_nid() body
folded to a constant, so page->flags/folio->flags was never actually
read. ASSERT_EXCLUSIVE_BITS() is a real runtime check that can't be
folded away, so doing it unconditionally would add a pointless read
of page->flags/folio->flags and a check that can never fire. Keep
page_to_nid()/folio_nid() as plain "return 0" static inline stubs
under CONFIG_NUMA=n instead.

Signed-off-by: Hui Zhu <zhuhui@kylinos.cn>
Acked-by: David Hildenbrand (Arm) <david@kernel.org>
---
Changelog:
v5:
According to the comments of Sashiko, guard the ASSERT_EXCLUSIVE_BITS()
calls with #ifndef NODE_NOT_IN_PAGE_FLAGS (for nid) and #if
ZONES_WIDTH != 0 (for zonenum).
According to the comments of David, avoid calling
PF_POISONED_CHECK(page) twice in page_to_nid().
According to the warning of lkp, switch the CONFIG_NUMA=n
page_to_nid()/folio_nid() stubs from macros to static inline functions.
v4:
According to the comments of Andrew and Sashiko, set
page_to_nid()/folio_nid() as static inline stubs returning 0
under CONFIG_NUMA=n.
v3:
According to the comments of Andrew and Sashiko, move
ASSERT_EXCLUSIVE_BITS out of memdesc_nid()/memdesc_zonenum()
into the page/folio call sites.
v2:
According to the comments of David, remove useless comments and use
ASSERT_EXCLUSIVE_BITS() in memdesc_nid() instead of data_race() in
page_to_nid().

 include/linux/mm.h     | 23 ++++++++++++++++++++++-
 include/linux/mmzone.h |  7 ++++++-
 2 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/include/linux/mm.h b/include/linux/mm.h
index 485df9c2dbdd..772bd1fc6fe7 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2294,15 +2294,36 @@ static inline int memdesc_nid(memdesc_flags_t mdf)
 }
 #endif
 
+#ifdef CONFIG_NUMA
 static inline int page_to_nid(const struct page *page)
 {
-	return memdesc_nid(PF_POISONED_CHECK(page)->flags);
+	const struct page *p = PF_POISONED_CHECK(page);
+
+#ifndef NODE_NOT_IN_PAGE_FLAGS
+	ASSERT_EXCLUSIVE_BITS(p->flags, NODES_MASK << NODES_PGSHIFT);
+#endif
+	return memdesc_nid(p->flags);
 }
 
 static inline int folio_nid(const struct folio *folio)
 {
+#ifndef NODE_NOT_IN_PAGE_FLAGS
+	ASSERT_EXCLUSIVE_BITS(folio->flags,
+			      NODES_MASK << NODES_PGSHIFT);
+#endif
 	return memdesc_nid(folio->flags);
 }
+#else
+static inline int page_to_nid(const struct page *page)
+{
+	return 0;
+}
+
+static inline int folio_nid(const struct folio *folio)
+{
+	return 0;
+}
+#endif
 
 #ifdef CONFIG_NUMA_BALANCING
 /* page access time bits needs to hold at least 4 seconds */
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index ca2712187147..1b4336098113 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -1274,17 +1274,22 @@ static inline bool zone_is_empty(const struct zone *zone)
 
 static inline enum zone_type memdesc_zonenum(memdesc_flags_t flags)
 {
-	ASSERT_EXCLUSIVE_BITS(flags.f, ZONES_MASK << ZONES_PGSHIFT);
 	return (flags.f >> ZONES_PGSHIFT) & ZONES_MASK;
 }
 
 static inline enum zone_type page_zonenum(const struct page *page)
 {
+#if ZONES_WIDTH != 0
+	ASSERT_EXCLUSIVE_BITS(page->flags, ZONES_MASK << ZONES_PGSHIFT);
+#endif
 	return memdesc_zonenum(page->flags);
 }
 
 static inline enum zone_type folio_zonenum(const struct folio *folio)
 {
+#if ZONES_WIDTH != 0
+	ASSERT_EXCLUSIVE_BITS(folio->flags, ZONES_MASK << ZONES_PGSHIFT);
+#endif
 	return memdesc_zonenum(folio->flags);
 }
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites
  2026-06-25  7:18 [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites Hui Zhu
@ 2026-06-25 11:53 ` David Hildenbrand (Arm)
  2026-06-25 12:07   ` Lorenzo Stoakes
  0 siblings, 1 reply; 4+ messages in thread
From: David Hildenbrand (Arm) @ 2026-06-25 11:53 UTC (permalink / raw)
  To: Hui Zhu, Andrew Morton, Lorenzo Stoakes, Liam R. Howlett,
	Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
	Kairui Song, Qi Zheng, Shakeel Butt, Barry Song, Axel Rasmussen,
	Yuanchu Xie, Wei Xu, linux-mm, linux-kernel
  Cc: Hui Zhu

On 6/25/26 09:18, Hui Zhu wrote:
> From: Hui Zhu <zhuhui@kylinos.cn>
> 
> KCSAN reports a data race between page_to_nid()/folio_pgdat() reading
> page->flags and folio_trylock()/folio_lock() concurrently doing
> test_and_set_bit_lock(PG_locked, ...) on the same word, e.g.:
> 
>   BUG: KCSAN: data-race in __lruvec_stat_mod_folio / shmem_get_folio_gfp
> 
> The node id and zone id occupy fixed bit-ranges of page->flags that
> are set once at page init and never modified afterwards, so they can
> never overlap with the low PG_locked/PG_waiters bits touched by the
> folio lock path.
> 
> ASSERT_EXCLUSIVE_BITS(mdf.f, ...) inside memdesc_nid()/memdesc_zonenum()
> checks a by-value copy of the flags word, not the actual shared
> page->flags/folio->flags being modified concurrently, so it doesn't
> reliably assert anything about the real race. Move the assertion to
> page_to_nid(), folio_nid(), page_zonenum() and folio_zonenum(), where
> flags is dereferenced directly from the page/folio.
> 
> On CONFIG_NUMA=n, NODES_MASK is 0 and the old memdesc_nid() body
> folded to a constant, so page->flags/folio->flags was never actually
> read. ASSERT_EXCLUSIVE_BITS() is a real runtime check that can't be
> folded away, so doing it unconditionally would add a pointless read
> of page->flags/folio->flags and a check that can never fire. Keep
> page_to_nid()/folio_nid() as plain "return 0" static inline stubs
> under CONFIG_NUMA=n instead.
> 
> Signed-off-by: Hui Zhu <zhuhui@kylinos.cn>
> Acked-by: David Hildenbrand (Arm) <david@kernel.org>
> ---
> Changelog:
> v5:
> According to the comments of Sashiko, guard the ASSERT_EXCLUSIVE_BITS()
> calls with #ifndef NODE_NOT_IN_PAGE_FLAGS (for nid) and #if
> ZONES_WIDTH != 0 (for zonenum).
> According to the comments of David, avoid calling
> PF_POISONED_CHECK(page) twice in page_to_nid().
> According to the warning of lkp, switch the CONFIG_NUMA=n
> page_to_nid()/folio_nid() stubs from macros to static inline functions.
> v4:
> According to the comments of Andrew and Sashiko, set
> page_to_nid()/folio_nid() as static inline stubs returning 0
> under CONFIG_NUMA=n.
> v3:
> According to the comments of Andrew and Sashiko, move
> ASSERT_EXCLUSIVE_BITS out of memdesc_nid()/memdesc_zonenum()
> into the page/folio call sites.
> v2:
> According to the comments of David, remove useless comments and use
> ASSERT_EXCLUSIVE_BITS() in memdesc_nid() instead of data_race() in
> page_to_nid().
> 
>  include/linux/mm.h     | 23 ++++++++++++++++++++++-
>  include/linux/mmzone.h |  7 ++++++-
>  2 files changed, 28 insertions(+), 2 deletions(-)
> 
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index 485df9c2dbdd..772bd1fc6fe7 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -2294,15 +2294,36 @@ static inline int memdesc_nid(memdesc_flags_t mdf)
>  }
>  #endif
>  
> +#ifdef CONFIG_NUMA
>  static inline int page_to_nid(const struct page *page)
>  {
> -	return memdesc_nid(PF_POISONED_CHECK(page)->flags);
> +	const struct page *p = PF_POISONED_CHECK(page);
> +
> +#ifndef NODE_NOT_IN_PAGE_FLAGS
> +	ASSERT_EXCLUSIVE_BITS(p->flags, NODES_MASK << NODES_PGSHIFT);
> +#endif
> +	return memdesc_nid(p->flags);
>  }
>  
>  static inline int folio_nid(const struct folio *folio)
>  {
> +#ifndef NODE_NOT_IN_PAGE_FLAGS
> +	ASSERT_EXCLUSIVE_BITS(folio->flags,
> +			      NODES_MASK << NODES_PGSHIFT);
> +#endif47

This is getting ugly, really. We're leaking implementation details from
memdesc_nid() into folio_nid().

Maybe just turn memdesc_nid() into a macro where we can just do that check
internally? Not the best thing in this world, but better than this here.

-- 
Cheers,

David


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites
  2026-06-25 11:53 ` David Hildenbrand (Arm)
@ 2026-06-25 12:07   ` Lorenzo Stoakes
  2026-06-25 12:08     ` David Hildenbrand (Arm)
  0 siblings, 1 reply; 4+ messages in thread
From: Lorenzo Stoakes @ 2026-06-25 12:07 UTC (permalink / raw)
  To: David Hildenbrand (Arm)
  Cc: Hui Zhu, Andrew Morton, Liam R. Howlett, Vlastimil Babka,
	Mike Rapoport, Suren Baghdasaryan, Michal Hocko, Kairui Song,
	Qi Zheng, Shakeel Butt, Barry Song, Axel Rasmussen, Yuanchu Xie,
	Wei Xu, linux-mm, linux-kernel, Hui Zhu

On Thu, Jun 25, 2026 at 01:53:14PM +0200, David Hildenbrand (Arm) wrote:
> On 6/25/26 09:18, Hui Zhu wrote:
> > From: Hui Zhu <zhuhui@kylinos.cn>
> >
> > KCSAN reports a data race between page_to_nid()/folio_pgdat() reading
> > page->flags and folio_trylock()/folio_lock() concurrently doing
> > test_and_set_bit_lock(PG_locked, ...) on the same word, e.g.:
> >
> >   BUG: KCSAN: data-race in __lruvec_stat_mod_folio / shmem_get_folio_gfp
> >
> > The node id and zone id occupy fixed bit-ranges of page->flags that
> > are set once at page init and never modified afterwards, so they can
> > never overlap with the low PG_locked/PG_waiters bits touched by the
> > folio lock path.
> >
> > ASSERT_EXCLUSIVE_BITS(mdf.f, ...) inside memdesc_nid()/memdesc_zonenum()
> > checks a by-value copy of the flags word, not the actual shared
> > page->flags/folio->flags being modified concurrently, so it doesn't
> > reliably assert anything about the real race. Move the assertion to
> > page_to_nid(), folio_nid(), page_zonenum() and folio_zonenum(), where
> > flags is dereferenced directly from the page/folio.
> >
> > On CONFIG_NUMA=n, NODES_MASK is 0 and the old memdesc_nid() body
> > folded to a constant, so page->flags/folio->flags was never actually
> > read. ASSERT_EXCLUSIVE_BITS() is a real runtime check that can't be
> > folded away, so doing it unconditionally would add a pointless read
> > of page->flags/folio->flags and a check that can never fire. Keep
> > page_to_nid()/folio_nid() as plain "return 0" static inline stubs
> > under CONFIG_NUMA=n instead.
> >
> > Signed-off-by: Hui Zhu <zhuhui@kylinos.cn>
> > Acked-by: David Hildenbrand (Arm) <david@kernel.org>
> > ---
> > Changelog:
> > v5:
> > According to the comments of Sashiko, guard the ASSERT_EXCLUSIVE_BITS()
> > calls with #ifndef NODE_NOT_IN_PAGE_FLAGS (for nid) and #if
> > ZONES_WIDTH != 0 (for zonenum).
> > According to the comments of David, avoid calling
> > PF_POISONED_CHECK(page) twice in page_to_nid().
> > According to the warning of lkp, switch the CONFIG_NUMA=n
> > page_to_nid()/folio_nid() stubs from macros to static inline functions.
> > v4:
> > According to the comments of Andrew and Sashiko, set
> > page_to_nid()/folio_nid() as static inline stubs returning 0
> > under CONFIG_NUMA=n.
> > v3:
> > According to the comments of Andrew and Sashiko, move
> > ASSERT_EXCLUSIVE_BITS out of memdesc_nid()/memdesc_zonenum()
> > into the page/folio call sites.
> > v2:
> > According to the comments of David, remove useless comments and use
> > ASSERT_EXCLUSIVE_BITS() in memdesc_nid() instead of data_race() in
> > page_to_nid().
> >
> >  include/linux/mm.h     | 23 ++++++++++++++++++++++-
> >  include/linux/mmzone.h |  7 ++++++-
> >  2 files changed, 28 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/linux/mm.h b/include/linux/mm.h
> > index 485df9c2dbdd..772bd1fc6fe7 100644
> > --- a/include/linux/mm.h
> > +++ b/include/linux/mm.h
> > @@ -2294,15 +2294,36 @@ static inline int memdesc_nid(memdesc_flags_t mdf)
> >  }
> >  #endif
> >
> > +#ifdef CONFIG_NUMA
> >  static inline int page_to_nid(const struct page *page)
> >  {
> > -	return memdesc_nid(PF_POISONED_CHECK(page)->flags);
> > +	const struct page *p = PF_POISONED_CHECK(page);
> > +
> > +#ifndef NODE_NOT_IN_PAGE_FLAGS
> > +	ASSERT_EXCLUSIVE_BITS(p->flags, NODES_MASK << NODES_PGSHIFT);
> > +#endif
> > +	return memdesc_nid(p->flags);
> >  }
> >
> >  static inline int folio_nid(const struct folio *folio)
> >  {
> > +#ifndef NODE_NOT_IN_PAGE_FLAGS
> > +	ASSERT_EXCLUSIVE_BITS(folio->flags,
> > +			      NODES_MASK << NODES_PGSHIFT);
> > +#endif47
>
> This is getting ugly, really. We're leaking implementation details from
> memdesc_nid() into folio_nid().
>
> Maybe just turn memdesc_nid() into a macro where we can just do that check
> internally? Not the best thing in this world, but better than this here.

Could also do:

	if (!IS_ENABLED(NODE_NOT_IN_PAGE_FLAGS))
		ASSERT_EXCLUSIVE_BITS(folio->flags,
			      NODES_MASK << NODES_PGSHIFT);

But not sure if it's that much better.

(There's precedent for that form of it in mm/numa_memblks.c)

>
> --
> Cheers,
>
> David

Thanks, Lorenzo


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites
  2026-06-25 12:07   ` Lorenzo Stoakes
@ 2026-06-25 12:08     ` David Hildenbrand (Arm)
  0 siblings, 0 replies; 4+ messages in thread
From: David Hildenbrand (Arm) @ 2026-06-25 12:08 UTC (permalink / raw)
  To: Lorenzo Stoakes
  Cc: Hui Zhu, Andrew Morton, Liam R. Howlett, Vlastimil Babka,
	Mike Rapoport, Suren Baghdasaryan, Michal Hocko, Kairui Song,
	Qi Zheng, Shakeel Butt, Barry Song, Axel Rasmussen, Yuanchu Xie,
	Wei Xu, linux-mm, linux-kernel, Hui Zhu

On 6/25/26 14:07, Lorenzo Stoakes wrote:
> On Thu, Jun 25, 2026 at 01:53:14PM +0200, David Hildenbrand (Arm) wrote:
>> On 6/25/26 09:18, Hui Zhu wrote:
>>> From: Hui Zhu <zhuhui@kylinos.cn>
>>>
>>> KCSAN reports a data race between page_to_nid()/folio_pgdat() reading
>>> page->flags and folio_trylock()/folio_lock() concurrently doing
>>> test_and_set_bit_lock(PG_locked, ...) on the same word, e.g.:
>>>
>>>   BUG: KCSAN: data-race in __lruvec_stat_mod_folio / shmem_get_folio_gfp
>>>
>>> The node id and zone id occupy fixed bit-ranges of page->flags that
>>> are set once at page init and never modified afterwards, so they can
>>> never overlap with the low PG_locked/PG_waiters bits touched by the
>>> folio lock path.
>>>
>>> ASSERT_EXCLUSIVE_BITS(mdf.f, ...) inside memdesc_nid()/memdesc_zonenum()
>>> checks a by-value copy of the flags word, not the actual shared
>>> page->flags/folio->flags being modified concurrently, so it doesn't
>>> reliably assert anything about the real race. Move the assertion to
>>> page_to_nid(), folio_nid(), page_zonenum() and folio_zonenum(), where
>>> flags is dereferenced directly from the page/folio.
>>>
>>> On CONFIG_NUMA=n, NODES_MASK is 0 and the old memdesc_nid() body
>>> folded to a constant, so page->flags/folio->flags was never actually
>>> read. ASSERT_EXCLUSIVE_BITS() is a real runtime check that can't be
>>> folded away, so doing it unconditionally would add a pointless read
>>> of page->flags/folio->flags and a check that can never fire. Keep
>>> page_to_nid()/folio_nid() as plain "return 0" static inline stubs
>>> under CONFIG_NUMA=n instead.
>>>
>>> Signed-off-by: Hui Zhu <zhuhui@kylinos.cn>
>>> Acked-by: David Hildenbrand (Arm) <david@kernel.org>
>>> ---
>>> Changelog:
>>> v5:
>>> According to the comments of Sashiko, guard the ASSERT_EXCLUSIVE_BITS()
>>> calls with #ifndef NODE_NOT_IN_PAGE_FLAGS (for nid) and #if
>>> ZONES_WIDTH != 0 (for zonenum).
>>> According to the comments of David, avoid calling
>>> PF_POISONED_CHECK(page) twice in page_to_nid().
>>> According to the warning of lkp, switch the CONFIG_NUMA=n
>>> page_to_nid()/folio_nid() stubs from macros to static inline functions.
>>> v4:
>>> According to the comments of Andrew and Sashiko, set
>>> page_to_nid()/folio_nid() as static inline stubs returning 0
>>> under CONFIG_NUMA=n.
>>> v3:
>>> According to the comments of Andrew and Sashiko, move
>>> ASSERT_EXCLUSIVE_BITS out of memdesc_nid()/memdesc_zonenum()
>>> into the page/folio call sites.
>>> v2:
>>> According to the comments of David, remove useless comments and use
>>> ASSERT_EXCLUSIVE_BITS() in memdesc_nid() instead of data_race() in
>>> page_to_nid().
>>>
>>>  include/linux/mm.h     | 23 ++++++++++++++++++++++-
>>>  include/linux/mmzone.h |  7 ++++++-
>>>  2 files changed, 28 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/include/linux/mm.h b/include/linux/mm.h
>>> index 485df9c2dbdd..772bd1fc6fe7 100644
>>> --- a/include/linux/mm.h
>>> +++ b/include/linux/mm.h
>>> @@ -2294,15 +2294,36 @@ static inline int memdesc_nid(memdesc_flags_t mdf)
>>>  }
>>>  #endif
>>>
>>> +#ifdef CONFIG_NUMA
>>>  static inline int page_to_nid(const struct page *page)
>>>  {
>>> -	return memdesc_nid(PF_POISONED_CHECK(page)->flags);
>>> +	const struct page *p = PF_POISONED_CHECK(page);
>>> +
>>> +#ifndef NODE_NOT_IN_PAGE_FLAGS
>>> +	ASSERT_EXCLUSIVE_BITS(p->flags, NODES_MASK << NODES_PGSHIFT);
>>> +#endif
>>> +	return memdesc_nid(p->flags);
>>>  }
>>>
>>>  static inline int folio_nid(const struct folio *folio)
>>>  {
>>> +#ifndef NODE_NOT_IN_PAGE_FLAGS
>>> +	ASSERT_EXCLUSIVE_BITS(folio->flags,
>>> +			      NODES_MASK << NODES_PGSHIFT);
>>> +#endif47
>>
>> This is getting ugly, really. We're leaking implementation details from
>> memdesc_nid() into folio_nid().
>>
>> Maybe just turn memdesc_nid() into a macro where we can just do that check
>> internally? Not the best thing in this world, but better than this here.
> 
> Could also do:
> 
> 	if (!IS_ENABLED(NODE_NOT_IN_PAGE_FLAGS))
> 		ASSERT_EXCLUSIVE_BITS(folio->flags,
> 			      NODES_MASK << NODES_PGSHIFT);
> 
> But not sure if it's that much better.

It's still making an assumption of what the memdesc function we're calling will do.

-- 
Cheers,

David


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-06-25 12:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-25  7:18 [PATCH v5] mm: assert exclusive nid/zonenum bits at the page/folio access sites Hui Zhu
2026-06-25 11:53 ` David Hildenbrand (Arm)
2026-06-25 12:07   ` Lorenzo Stoakes
2026-06-25 12:08     ` David Hildenbrand (Arm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox