From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta0.migadu.com (out-188.mta0.migadu.com [91.218.175.188]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F0F5F355F2A for ; Thu, 25 Jun 2026 02:40:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782355251; cv=none; b=nXFNXo+ThPMt6ZtZ2dJXTzxEJ/BcfBWTabY4smkCFa89Ro/ODI3qyUb3FmfkT34AfOVDBE2M7TjLfpdZsQZI5ZhYArV3Q7oWXaqckZ61QLgJFNEzpk/nCUaB5iruGRQ46yVzYLZAJ9OgK1vtqaPc9PWbYAZdayC3oSsflZ2RQHc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782355251; c=relaxed/simple; bh=TvuNZAa5R41Z9Oo9b4uHPtp01Kj38FhY6lUuGdPigO0=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=qZZcKmS1DXus/BScemGHH/W0jeDTFJXDFdbanCTLTAX13ZubMr9O5Eh7SNUSz4LC3l1BdevYXEExBXrKplzYfEKisYSwImAZVHCTHnyvPTwnsicGMycxZ+9j/C8upqP4OubD1xVCMMF8F9bpTidSZYBlzbVJuoLfWGDKXYdJnwQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=Qw4J2wef; arc=none smtp.client-ip=91.218.175.188 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="Qw4J2wef" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1782355234; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=TFbcmBSmgNQkGD89iSSlaWPAe0b7053UYUJCgVQXiLk=; b=Qw4J2wefkNJOAExdPFGyxaTMgtXgBzTr722Flb8xhkSDGUJm7UvAmHafV2GjCODdKFuKFy 0cJILD3wBDJktkBnc5QJezEOZoulpRHoQ4MPI4xe6gSxhjK57+SlZ/Y2xEJOqtE9D5O7K/ Gw0MMj1jAUVTODaLDTMR1DPg0VYyre4= From: Hui Zhu 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@kvack.org, linux-kernel@vger.kernel.org Cc: Hui Zhu Subject: [PATCH v3] mm: assert exclusive nid/zonenum bits at the page/folio access sites Date: Thu, 25 Jun 2026 10:40:19 +0800 Message-ID: <20260625024019.838786-1-hui.zhu@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT From: Hui Zhu 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. Signed-off-by: Hui Zhu --- Changelog: 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 | 4 ++++ include/linux/mmzone.h | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/linux/mm.h b/include/linux/mm.h index 485df9c2dbdd..734e9de8f4ce 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2296,11 +2296,15 @@ static inline int memdesc_nid(memdesc_flags_t mdf) static inline int page_to_nid(const struct page *page) { + ASSERT_EXCLUSIVE_BITS(PF_POISONED_CHECK(page)->flags, + NODES_MASK << NODES_PGSHIFT); return memdesc_nid(PF_POISONED_CHECK(page)->flags); } static inline int folio_nid(const struct folio *folio) { + ASSERT_EXCLUSIVE_BITS(folio->flags, + NODES_MASK << NODES_PGSHIFT); return memdesc_nid(folio->flags); } diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index ca2712187147..56dffa966343 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -1274,17 +1274,18 @@ 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) { + ASSERT_EXCLUSIVE_BITS(page->flags, ZONES_MASK << ZONES_PGSHIFT); return memdesc_zonenum(page->flags); } static inline enum zone_type folio_zonenum(const struct folio *folio) { + ASSERT_EXCLUSIVE_BITS(folio->flags, ZONES_MASK << ZONES_PGSHIFT); return memdesc_zonenum(folio->flags); } -- 2.43.0