From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 6F9753D3B3 for ; Sat, 18 Jul 2026 01:30:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784338243; cv=none; b=XtT+1hr8Yb4Z8DWTm2AxyN/LiLRhGdX9B3dUHQxGAuuReEe9WxqfRqID/uAcQG71Jrl7SlMmftnjBk1gWS/V5KxCtM13kln95/a8Yd7RLooNWd3OIFQmlqFoWpwF0sEEsGjMAJw8aVFhyRByHnnGLJiNlLrpefZF/y5PAe/mBcw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784338243; c=relaxed/simple; bh=+GgTEfuPdD0vodAJIVCurJhExea0F9hd2WXePcS+w7A=; h=Date:To:From:Subject:Message-Id; b=N7Mt/gXgRMs6lubrgSUsdjCkiOrjqjsz+aHeT2Wer06s9FaA9RzHjI9DVCGkf3ioVKQ7Cj9rygZyGBuTbuu49toicXv0P/5Xk0Kj5D0CyRjt3PVFmbJ2WneKrww74w8Z44zJxJhI9ZxyFerci45W/v5QP4nuODZ7X+SNNveWpjo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=nAga+/eU; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="nAga+/eU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EABB41F000E9; Sat, 18 Jul 2026 01:30:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux-foundation.org; s=korg; t=1784338242; bh=O4D+cRds7RkiWKskmnSQdRaNlyjMgmITgE/tSDVmWcs=; h=Date:To:From:Subject; b=nAga+/eUZhlC9HUAO3g6GHwJcid1M0y+tz+ueL/AC+e31E/YpM7lagVaK05Nzfd05 trMYcRI+G8jfeE4YEoq28Xo3k0QfNxBeG1jxahQmuPuaCPxi7wlDm5vS3RcnjB1k93 XaNawMJw1Hilo84qmpqKAnoZywk8qOVz47MVFr0Y= Date: Fri, 17 Jul 2026 18:30:41 -0700 To: mm-commits@vger.kernel.org,ziy@nvidia.com,ying.huang@linux.alibaba.com,willy@infradead.org,rakie.kim@sk.com,osalvador@suse.de,matthew.brost@intel.com,ljs@kernel.org,joshua.hahnjy@gmail.com,gourry@gourry.net,david@kernel.org,byungchul@sk.com,baolin.wang@linux.alibaba.com,baohua@kernel.org,apopple@nvidia.com,npache@redhat.com,akpm@linux-foundation.org From: Andrew Morton Subject: + mm-decrement-mthp_stat_nr_anon-in-free_zone_device_folio.patch added to mm-hotfixes-unstable branch Message-Id: <20260718013041.EABB41F000E9@smtp.kernel.org> Precedence: bulk X-Mailing-List: mm-commits@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The patch titled Subject: mm: decrement MTHP_STAT_NR_ANON in free_zone_device_folio() has been added to the -mm mm-hotfixes-unstable branch. Its filename is mm-decrement-mthp_stat_nr_anon-in-free_zone_device_folio.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-decrement-mthp_stat_nr_anon-in-free_zone_device_folio.patch This patch will later appear in the mm-hotfixes-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via various branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there most days ------------------------------------------------------ From: Nico Pache Subject: mm: decrement MTHP_STAT_NR_ANON in free_zone_device_folio() Date: Fri, 17 Jul 2026 00:44:59 -0600 Patch series "mm: fix PMD level mTHP accounting bugs", v2. While running selftests I noticed the PMD level per-mTHP stats (nr_anon) remained elevated after each run. After further investigation I noticed this accounting error occurs for both the migration.private_anon_htlb_test and the HMM tests. In the HMM case this is due to folio_add_new_anon_rmap() incrementing the mTHP stats, but never containing a corresponding decrement in free_zone_device_folio(). We solve this by making sure to decrement the counter when freeing device memory. In the migration case, we are incrementing this counter without first checking whether this folio is a hugetlb folio, which relies on a separate accounting system. We solve this by adding the proper hugetlb check before incrementing this counter. With these changes in place, the two tests no longer cause elevated PMD level accounting issues. This patch (of 2): When a zone device folio is mapped as anonymous, folio_add_new_anon_rmap() increments MTHP_STAT_NR_ANON. The corresponding decrement lives in __free_pages_prepare() in page_alloc.c, but zone device folios are freed via free_zone_device_folio() which never calls __free_pages_prepare(). This causes nr_anon to remain permanently elevated after zone device folios are freed. Add the missing mod_mthp_stat() decrement to free_zone_device_folio() so that the counter is properly balanced. Link: https://lore.kernel.org/20260717064502.1980173-1-npache@redhat.com Link: https://lore.kernel.org/20260717064502.1980173-2-npache@redhat.com Fixes: 5d65c8d758f2 ("mm: count the number of anonymous THPs per size") Co-developed-by: David Hildenbrand Signed-off-by: David Hildenbrand Signed-off-by: Nico Pache Reviewed-by: Zi Yan Cc: Alistair Popple Cc: Barry Song Cc: Byungchul Park Cc: Gregory Price Cc: "Huang, Ying" Cc: Joshua Hahn Cc: Lorenzo Stoakes Cc: Matthew Brost Cc: Matthew Wilcox (Oracle) Cc: Oscar Salvador Cc: Rakie Kim Cc: Baolin Wang Signed-off-by: Andrew Morton --- mm/memremap.c | 1 + 1 file changed, 1 insertion(+) --- a/mm/memremap.c~mm-decrement-mthp_stat_nr_anon-in-free_zone_device_folio +++ a/mm/memremap.c @@ -425,6 +425,7 @@ void free_zone_device_folio(struct folio mem_cgroup_uncharge(folio); if (folio_test_anon(folio)) { + mod_mthp_stat(folio_order(folio), MTHP_STAT_NR_ANON, -1); for (i = 0; i < nr; i++) __ClearPageAnonExclusive(folio_page(folio, i)); } _ Patches currently in -mm which might be from npache@redhat.com are mm-decrement-mthp_stat_nr_anon-in-free_zone_device_folio.patch mm-migrate-exclude-hugetlb-folios-from-mthp_stat_nr_anon-accounting.patch