The quilt patch titled Subject: mm-page_alloc-keep-track-of-free-highatomic-fix has been removed from the -mm tree. Its filename was mm-page_alloc-keep-track-of-free-highatomic-fix.patch This patch was dropped because it was folded into mm-page_alloc-keep-track-of-free-highatomic.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-page_alloc-keep-track-of-free-highatomic-fix Date: Tue Oct 29 05:37:30 PM PDT 2024 s/if/else if/, per Johannes, stealth whitespace tweak Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Link Lin <linkl@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Yu Zhao <yuzhao@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/mm/page_alloc.c~mm-page_alloc-keep-track-of-free-highatomic-fix +++ a/mm/page_alloc.c @@ -644,9 +644,9 @@ static inline void account_freepages(str if (is_migrate_cma(migratetype)) __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages); - - if (is_migrate_highatomic(migratetype)) - WRITE_ONCE(zone->nr_free_highatomic, zone->nr_free_highatomic + nr_pages); + else if (is_migrate_highatomic(migratetype)) + WRITE_ONCE(zone->nr_free_highatomic, + zone->nr_free_highatomic + nr_pages); } /* Used for pages not on another list */ _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-page_alloc-keep-track-of-free-highatomic.patch bootmem-stop-using-page-index-fix.patch vma-detect-infinite-loop-in-vma-tree-fix.patch maple_tree-add-a-test-checking-storing-null-fix.patch