[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <aUW52Z8QJX1mko1q@aschofie-mobl2.lan>
Date: Fri, 19 Dec 2025 12:47:21 -0800
From: Alison Schofield <alison.schofield@...el.com>
To: John Groves <John@...ves.net>
CC: David Hildenbrand <david@...nel.org>, Oscar Salvador <osalvador@...e.de>,
Andrew Morton <akpm@...ux-foundation.org>, John Groves <jgroves@...ron.com>,
"Darrick J . Wong" <djwong@...nel.org>, Dan Williams
<dan.j.williams@...el.com>, Gregory Price <gourry@...rry.net>, Balbir Singh
<bsingharora@...il.com>, Alistair Popple <apopple@...dia.com>,
<linux-mm@...ck.org>, <linux-kernel@...r.kernel.org>,
<linux-cxl@...r.kernel.org>, <linux-fsdevel@...r.kernel.org>, Aravind Ramesh
<arramesh@...ron.com>, Ajay Joshi <ajayjoshi@...ron.com>
Subject: Re: [PATCH V2] mm/memremap: fix spurious large folio warning for
FS-DAX
On Fri, Dec 19, 2025 at 06:37:17AM -0600, John Groves wrote:
> From: John Groves <John@...ves.net>
>
> This patch addresses a warning that I discovered while working on famfs,
> which is an fs-dax file system that virtually always does PMD faults
> (next famfs patch series coming after the holidays).
>
> However, XFS also does PMD faults in fs-dax mode, and it also triggers
> the warning. It takes some effort to get XFS to do a PMD fault, but
> instructions to reproduce it are below.
>
> The VM_WARN_ON_ONCE(folio_test_large(folio)) check in
> free_zone_device_folio() incorrectly triggers for MEMORY_DEVICE_FS_DAX
> when PMD (2MB) mappings are used.
>
> FS-DAX legitimately creates large file-backed folios when handling PMD
> faults. This is a core feature of FS-DAX that provides significant
> performance benefits by mapping 2MB regions directly to persistent
> memory. When these mappings are unmapped, the large folios are freed
> through free_zone_device_folio(), which triggers the spurious warning.
>
> The warning was introduced by commit that added support for large zone
> device private folios. However, that commit did not account for FS-DAX
> file-backed folios, which have always supported large (PMD-sized)
> mappings.
>
> The check distinguishes between anonymous folios (which clear
> AnonExclusive flags for each sub-page) and file-backed folios. For
> file-backed folios, it assumes large folios are unexpected - but this
> assumption is incorrect for FS-DAX.
>
> The fix is to exempt MEMORY_DEVICE_FS_DAX from the large folio warning,
> allowing FS-DAX to continue using PMD mappings without triggering false
> warnings.
>
> Fixes: d245f9b4ab80 ("mm/zone_device: support large zone device private folios")
> Signed-off-by: John Groves <john@...ves.net>
> ---
Tested-by: Alison Schofield <alison.schofield@...el.com>
Powered by blists - more mailing lists