<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>b2128290c29902315e632ea59e0504d6bc9e9b42 - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmerge</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#b2128290c29902315e632ea59e0504d6bc9e9b42</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmergeBackmerge of drm-next, mainly to pick up dt bindings docs updates toavoid conflicts.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Sat, 18 Jul 2026 17:06:55 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>18fbf5151d2c0bfe433c7428eef03cabf5fdb2fa - Merge tag &apos;mm-stable-2026-08-26-15-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#18fbf5151d2c0bfe433c7428eef03cabf5fdb2fa</link>
        <description>Merge tag &apos;mm-stable-2026-08-26-15-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull more MM updates from Andrew Morton: - &quot;mm/rmap: index MAP_PRIVATE file-backed folios by anonymous pgoff&quot;   (Lorenzo Stoakes)   Index MAP_PRIVATE file-backed folios by their anonymous page offset   to resolve confusion around reverse mapping for zeroed and CoW&apos;d   file-backed memory.   Use this new VMA anonymous page offset tracking to eliminate index   conflicts and lay the foundation for scalable CoW performance   improvements. - &quot;promote mapped executable folios after first usage for MGLRU&quot;   (Baolin Wang)   Make MGLRU&apos;s protection of mapped executable file folios more   reliable. Follow the classical LRU&apos;s logic, promoting mapped   executable file folios after their first usage to give executable   code a better chance to stay in memory and improve workload   performance. - &quot;mm: vmscan: fix node reclaim ignoring swappiness parameter&quot; (Ridong   Chen)   Fix per-node proactive reclaim interface&apos;s ignoring the swappiness   parameter when CONFIG_MEMCG is disabled by consolidating   sc_swappiness() into a single function that checks   proactive_swappiness regardless of kernel configuration. - &quot;mm/vmscan: reduce lru_lock contention via vmstat-derived   scan-balance cost&quot; (Usama Arif)   Reduce lru_lock contention in the reclaim path by deriving   scan-balance costs from vmstat counters rather than lock-acquired   producer updates.   Read and decay these cost signals on the reclaim side under a   dedicated per-lruvec lock, reducing total LRU lock wait time by over   60% without impacting scan throughput. - &quot;zram: fix zram issues reported by sashiko&quot; (Sergey Senozhatsky)   Fix two low-risk zram bugs which Sashiko spotted in drive-by review. - &quot;Honor XA_FLAGS_ACCOUNT in xas_split_alloc() and charge to folio&apos;s   memcg&quot; (Zi Yan)   Fix xas_split_alloc() by enabling target folio memcg charging during   splits and adding the missing __GFP_ACCOUNT flag for proper XArray   node memory accounting. - &quot;selftests/mm: use pattern matching in .gitignore&quot; (Pratyush Mallick)   Replace hardcoded binary names in selftests/mm/.gitignore with a   generic pattern-matching rule to automatically ignore generated test   files and avoid manual updates when adding new tests. - &quot;mm/page_ext: remove pgdat_page_ext_init()&quot; (Sang-Heon Jeon)   Make the incompatibility between FLATMEM and NUMA explicit in   mm/Kconfig and remove the unused pgdat_page_ext_init() function. - &quot;zram: fix zstd error paths and add parameter validation&quot; (Haoqin   Huang)   Clean up zram compression backends by removing redundant error   cleanup, adding parameter and dictionary validation, auto-prefixing   algorithm error logs, and resetting parameters prior to   reinitialization. - &quot;zram: fix stale scan bounds after reinitialization&quot; (Longlong Xia)   Prevent out-of-bounds slot accesses during concurrent zram resets by   moving table scan bound calculations under dev_lock in   writeback_store() and read_block_state(). - &quot;add anon mTHP collapse test cases&quot; (Baolin Wang)   Extend selftests helper functions to support arbitrary page orders   and add new test cases and options for mTHP collapse in khugepaged. - &quot;selftests/mm: Handle unsupported and transient test conditions&quot;   (Muhammad Usama Anjum)   Update MM selftests to report a SKIP status instead of a failure when   required kernel or filesystem features are unsupported, while adding   retry logic for transient page migration errors. - &quot;mm/zswap: Fixes and improves the zswap shrink&quot; (Hao Jia)   Fix the missing zswap global shrinker when CONFIG_MEMCG is disabled   and extend shrink_memcg() to support batch writeback for improved   writeback efficiency. - &quot;alloc_tag: introduce IOCTL-based filtering for MAP&quot; (Suren   Baghdasaryan)   Introduce an IOCTL-based binary interface for memory allocation   profiling that enables kernel-side filtering before per-CPU counter   aggregation.   This eliminates the text-parsing overhead of /proc/allocinfo and   provides up to a 20x speedup by transferring only filtered allocation   data to userspace. - &quot;better block swap batching and a different take on swap_ops v5&quot;   (Christoph Hellwig)   Refactor block swap I/O to use swap_iocb for batching instead of   single-bio requests and rebase the swap_ops interface, achieving   faster swap throughput during kernel builds. - &quot;mm: kmemleak: reduce transient false positives by confirming leaks&quot;   (Catalin Marinas)   Reduce false-positive kmemleak reports by combining two kmemleak   enhancements that add a second confirmation scan and a configurable   minimum unreferenced scan count module parameter. - &quot;mm: kmemleak: default min_unref_scans to 2 for verbose kernels&quot;   (Breno Leitao)   Auto-scanning kernels can generate false-positive memory leak reports   on single scans, so this patch defaults min_unref_scans to 2 when   CONFIG_DEBUG_KMEMLEAK_VERBOSE is enabled to require a second   confirming scan. - &quot;swap_ops updates&quot; (Christoph Hellwig)   Batching I/O for synchronous swap devices causes performance   regressions and filesystem-based swap suffers from double-indirection   overhead. This series resolves both issues by reintroducing per-folio   writes for synchronous swap and allowing filesystems to directly   export their own swap_ops. - &quot;mm/khugepaged: several cleanups&quot; (Nico Pache)   khugepaged accumulated redundant state-checking patterns and outdated   comments following mTHP integration. Introduce dedicated helpers for   PTE validation and event counting while refreshing the internal   documentation. - &quot;maple_tree: lock checking and clean ups&quot; (Liam Howlett)   Syzbot reports incorrectly blame memory management exit paths for   locking bugs, maple tree erase operations risk allocation failures   without gfp flags and internal documentation lacks clarity.   Improve lock error detection, update docs, fix race and allocation   edge cases and optimize erase allocations using a fallback to   GFP_KERNEL | GFP_NOFAIL.* tag &apos;mm-stable-2026-08-26-15-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (172 commits)  selftests/proc: make proc-maps-race work with READ_IMPLIES_EXEC  memcg: move LRU size accounting on reparenting instead of copying it  mm/vmscan: fix comment logic in balance_pgdat  maple_tree: add helper mas_make_walkable()  maple_tree: avoid extra gap calculation  maple_tree: fix argument name in header  maple_tree: change two GFP flags in tests  maple_tree: document erase and allocations better  maple_tree: avoid mas_erase() and mtree_erase() failures  maple_tree: document that erase may use GFP_KERNEL for allocations  maple_tree: catch race in mas_alloc_cyclic()  maple_tree: add bulk parent set helper  maple_tree: micro optimisation of mas_wr_store_type()  maple_tree: optimise mas_wr_node_store() when not in rcu mode  maple_tree: use prefetched value in mas_wr_store_type()  maple_tree: clarify comments on mas_nomem()  maple_tree: drop MAPLE_ALLOC_SLOTS  maple_tree: drop dead code from mas_extend_spanning_null()  maple_tree: documentation fix  maple_tree: add write lock checking with lockdep sequence numbers  ...

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Thu, 27 Aug 2026 18:17:06 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8f07855f579ae8b06a90703cd8a4d02849728890 - selftests: mm: test kmemleak&apos;s N-consecutive-scan leak confirmation</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#8f07855f579ae8b06a90703cd8a4d02849728890</link>
        <description>selftests: mm: test kmemleak&apos;s N-consecutive-scan leak confirmationAdd a functional test for the min_unref_scans kmemleak module parameter. Using samples/kmemleak&apos;s helper module it checks that min_unref_scans=1reports an orphan on the first scan, min_unref_scans=2 reports nothing onthe first scan but does on the second, and that the parameter reads backwhat was written.It counts only the helper module&apos;s own orphans (matched by their[kmemleak_test] backtrace, with the module kept loaded so the symbolsresolve) so unrelated leaks already present on the system do not perturbthe result.  The test skips when run as non-root, withoutCONFIG_DEBUG_KMEMLEAK / CONFIG_SAMPLE_KMEMLEAK, on a kernel without theparameter, or when the helper yields no detectable orphan.Link: https://lore.kernel.org/20260713-catalin_pto-v1-4-5b93b1131089@debian.orgSigned-off-by: Breno Leitao &lt;leitao@debian.org&gt;Reviewed-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Cc: David Hildenbrand &lt;david@kernel.org&gt;Cc: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Liam R. Howlett &lt;liam@infradead.org&gt;Cc: Lorenzo Stoakes &lt;ljs@kernel.org&gt;Cc: Michal Hocko &lt;mhocko@suse.com&gt;Cc: Mike Rapoport &lt;rppt@kernel.org&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Vlastimil Babka &lt;vbabka@kernel.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Mon, 13 Jul 2026 13:48:07 +0200</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>4e7e499b750f0ba1806a9f60ad091364c3382ad1 - selftests/mm: rename local_config.h to local_config.h_gen</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#4e7e499b750f0ba1806a9f60ad091364c3382ad1</link>
        <description>selftests/mm: rename local_config.h to local_config.h_genPatch series &quot;selftests/mm: use pattern matching in .gitignore&quot;, v4.The current selftests/mm/.gitignore hardcodes each generated test binaryby name, which requires manual updates every time a new test is added.This series switches to a pattern-matching approach (similar to KVMselftests), ignoring everything by default and allowing specific sourceextensions.  To accommodate this without tracking generated headers,local_config.h is renamed to local_config.h_gen.This patch (of 2):Because local_config.h is a generated build artifact, un-ignoring all .hfiles in .gitignore causes it to incorrectly show up as an untracked filein git status.Rename it to local_config.h_gen so it no longer matches the !*.h inclusionrule, preparing for a subsequent patch that switches .gitignore to apattern-matching approach.Update Makefile, check_config.sh, and affected test sources (cow.c,gup_longterm.c) accordingly.Link: https://lore.kernel.org/20260803221732.3651981-1-pratmal@google.comLink: https://lore.kernel.org/20260803221732.3651981-2-pratmal@google.comSigned-off-by: Pratyush Mallick &lt;pratmal@google.com&gt;Reviewed-by: Lorenzo Stoakes &lt;ljs@kernel.org&gt;Acked-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Suggested-by: David Hildenbrand &lt;david@kernel.org&gt;Cc: Jason Gunthorpe &lt;jgg@ziepe.ca&gt;Cc: John Hubbard &lt;jhubbard@nvidia.com&gt;Cc: &quot;Liam R. Howlett&quot; &lt;liam@infradead.org&gt;Cc: Michal Hocko &lt;mhocko@suse.com&gt;Cc: Peter Xu &lt;peterx@redhat.com&gt;Cc: SeongJae Park &lt;sj@kernel.org&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Vlastimil Babka &lt;vbabka@kernel.org&gt;Cc: Yosry Ahmed &lt;yosry@kernel.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 04 Aug 2026 00:17:31 +0200</pubDate>
        <dc:creator>Pratyush Mallick &lt;pratmal@google.com&gt;</dc:creator>
    </item>
<item>
        <title>637315cb400eed1dbe721954fea437a61a2d65b2 - Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#637315cb400eed1dbe721954fea437a61a2d65b2</link>
        <description>Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEADKVM/riscv changes for 7.3- Svadu/Zicfiss/Zicfilp FWFT support for Guest- Use try_cmpxchg for IMSIC MRIF RMW- More arch-specific tracepoints in KVM RISC-V- Eager Page Splitting for KVM RISC-V- Optimize hfence request handling for SMP Guests- Improve dirty log clearing by skipping zero bits in mask- Guard HFENCE range loops against overflow- CPU PM notifiers in KVM RISC-V for non-retentive idle states- Fix kernel-mode vector context save/restore for Guest

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 18 Aug 2026 13:07:31 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>ed3b875bea55a3ec4837113356df2ead11115af9 - Merge tag &apos;mm-stable-2026-08-18-18-39&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#ed3b875bea55a3ec4837113356df2ead11115af9</link>
        <description>Merge tag &apos;mm-stable-2026-08-18-18-39&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull MM updates from Andrew Morton: - &quot;mm: drop &quot;sub&quot; prefix from various places&quot; (Dev Jain)   page-&gt;folio conversion and a naming cleanup - &quot;mm/kasan: remove redundant initialization for kasan_flag_write_only&quot;   (Igor Putko)   KASAN cleanup work - &quot;mm/filemap: reduce unnecessary xarray lookups&quot; (Chi Zhiling)   Small speedup in the pagecaache read code - &quot;mm/percpu: Fix possible NOFS/NOIO reclaim recursion&quot; (Kaitao Cheng)   Improve the vmalloc code - mainly the avoidance of GFP_KERNEL   allocations when the caller asked for GFP_NOFS or GFP_NOIO - &quot;mm/kmemleak: avoid soft lockup when scanning task stacks&quot; (Breno   Leitao)   Avoid a soft lockup watchdog trigger from the kmemleak scanning code   in extreme situations - &quot;mm/page_owner: misc cleanups&quot; (Ye Liu)   Cleanups to the page_owner code. For some reason lots of people have   been working on the page_owner code this cycle. - &quot;mm: convert to walk_page_range_vma() to eliminate find_vma()&quot;   (Kefeng Wang)   Simplify and accelerate the page walking library function - &quot;mm/migrate: preparatory cleanups for batch copy and offload&quot;   (Shivank Garg)   Cleanups in the migration code - &quot;mm/page_owner: add per-fd filter infrastructure for print_mode and   NUMA filtering&quot; (Zhen Ni)   Per-fd filtering to page_owner in order to reduce the sometimes vast   amount of output it can produce - &quot;mm: Refactor bootmem gigantic hugepage allocation&quot; (Muchun Song)   Fixes and preparatory cleanups around bootmem HugeTLB handling,   sparse initialization ordering, and related vmemmap setup - &quot;mm/zsmalloc: reduce lock contention in zs_free()&quot; (Wenchao Hao)   Reduce lock contention in zs_free(), which dominates the unmap path   under memory pressure on Android (LMK kills) and on x86 servers   running zswap-heavy workloads.   Up to 1.83x improvement in microbenchmarking. - &quot;move alloc_tag.c file under mm/&quot; (Suren Baghdasaryan) - &quot;samples/damon: handle damon_{start,stop}() failures&quot; (SJ Park)   Fix improper handling of damon_start(), damon_stop(), and   damon_call() failures across DAMON sample modules to prevent   potential memory leaks, operation disruptions and use-after-free   bugs - &quot;mm/damon/sysfs: kobject_del() directories that users can   create/remove&quot; (SJ Park)   Fix delayed sysfs directory removal under DEBUG_KOBJECT_RELEASE   causeing creation failures due to duplicate directory names by adding   missing kobject_del() calls before creating new directories - &quot;mm: cleanup clear_not_present_full_ptes()&quot; (David Hildenbrand)   Clean up the core pte handling code - &quot;selftests/damon: misc fixes for test bugs&quot; (Kunwu Chan)   Fix several bugs in the DAMON selftests - &quot;selftests/damon: fix memcg_path staging handling&quot; (Cheng Nie)   Fix a bug in _damon_sysfs.py for damos_filter memcg_path setup, and   add a test case for it in sysfs.py. - &quot;selftests/damon: test kdamond refresh_ms&quot; (Ruslan Valiyev)   Selftest coverage for DAMON&apos;s refresh_ms sysfs feature by updating   the test control module and verifying that scheme stats update   automatically without manual intervention - &quot;mm/damon: five misc fixups&quot; (Akinobu Mita)   Miscellaneous DAMON fixups. - &quot;mm/damon/core: detect internal variation above max_nr_regions/2&quot;   (Jiayuan Chen)   Fix DAMON&apos;s region splitting behavior when region counts exceed half   the maximum budget by dynamically scaling down the split fraction as   the limit approaches, preventing large regions from staying un-split,   and add corresponding KUnit test coverage - &quot;mm: preparatory patches for PMD level swap entries&quot; (Usama Arif)   Refactor and clean up PMD softleaf helpers, call sites, and   architecture flags to lay the groundwork for a follow-up series that   introduces PMD page table swap entries - &quot;mm/damon: update, optimize, and clean up doc, tests, and code&quot; (SJ   Park)   Update DAMON design and ABI documentation, expands unit and selftest   coverage, optimize damon_commit_target_regions(), and clean up   recently added sysfs interface code for better readability - &quot;mm/vmpressure: reduce CPU, memory and code overhead on cgroup v2&quot;   (Usama Arif)   Optimize vmpressure() by skipping unnecessary work on cgroup v2 for   userspace event notifications and refactor v1-only eventfd handling   into mm/memcontrol-v1.c to reduce memory overhead and code complexity - &quot;selftests/mm: refactor pkey helpers and fix mmap error handling&quot;   (Hongfu Li)   Refactor pkeys shared tracing and assertion helpers into a common   file, unify protection key selftests to use consistent diagnostic   logging and assertions, and enforce standardized MAP_FAILED return   checks for mmap() calls across the tests - &quot;mm/damon: optimize out nr_accesses_bp&quot; (SJ Park)   Replace the error-prone, continuously updated nr_accesses_bp field in   damon_region with an on-demand moving sum function, reducing   structure memory overhead and avoiding state corruption bugs - &quot;Open HugeTLB allocation routine for more generic use&quot; (Ackerley Tng)   Decouple HugeTLB folio allocation from VMA dependencies by   introducing hugetlb_alloc_folio(), enabling subsystems like   guest_memfd to allocate HugeTLB folios without standard VMA   reservations or pseudo-VMAs - &quot;mm/damon: provide pseudo moving sum probe_hits&quot; (SJ Park)   Integrate DAMON&apos;s probe_hits attribute counter into the pseudo moving   sum infrastructure, enabling real-time, online monitoring without   waiting for full aggregation intervals - &quot;mm: Some cleanups for page allocator APIs&quot; (Brendan Jackman)   Simplify and refactor the page allocator entry points and flags by   unifying allocation paths, adding internal alloc_flags arguments, and   eliminating redundant __ prefixed alloc_pages variants. - &quot;Fix incorrect access of hugetlb pte entries&quot; (Dev Jain)   Enforce the consistent use of huge_ptep_get() instead of ptep_get()   for HugeTLB entries and fixes an unaligned address issue in arm64&apos;s   huge_ptep_get() implementation - &quot;mm/damon: validate all parameters in the core&quot; (SJ Park)   Consolidate parameter validation into the DAMON core specifically   within damon_start() and damon_commit_ctx() to centralize error   checking, eliminate caller-side redundant checks and to improve   maintenance efficiency - &quot;tools/mm/page_owner_sort: fix filtering and cleanup issues&quot; (Yichong   Chen)   Rename is_need() to filter_record() for clearer return semantics, fix   per-record allocation memory leaks and bound output copies in   search_pattern() to address an existing buffer issue - &quot;memcg: bail out reclaim when memcg is dying&quot; (Jiayuan Chen)   Mitigate a system-wide stall which occurs when a cgroup is removed   while one of its memory control files is doing synchronous reclaim - &quot;mm/memory-failure: add panic option for unrecoverable pages&quot; (Breno   Leitao)   Introduce an opt-in vm.panic_on_unrecoverable_memory_failure sysctl   that immediately panics the kernel on unrecoverable memory errors in   kernel-owned pages to preserve error context and prevent delayed,   silent data corruption - &quot;mm/damon: refactor damon_{start,stop,commit}() for simple error   handling&quot; (SJ Park)   Refactor the DAMON core API functions to guarantee that all contexts   are fully stopped when damon_start(), damon_stop(), or damon_commit()   fail, eliminating the need for complex and error-prone caller-side   cleanup code - &quot;Keep tail page private zero at free and folio split&quot; (Zi Yan)   Add checks to ensure tail_page-&gt;private is zero when freeing compound   or high-order pages and when promoting tail pages during large folio   splits. By validating these fields at free and split time, it allows   the removal of redundant private field clearing inside   prep_compound_tail() - &quot;mm: drop redundant lru_add_drain in anon folio reuse paths&quot; (Barry   Song)   Eliminate redundant lru_add_drain() calls in   wp_can_reuse_anon_folio() and do_swap_page() to reduce LRU lock   contention and system overhead   By validating folio refcounts against the LRU cache before draining   and removing unnecessary drains in the swap path, it achieves up to a   30.5% reduction in drain calls during heavy swap workloads - &quot;mm: clean up folio LRU and swap declarations&quot; (Jianyue Wu)   Reorganize folio LRU and swap code by relocating page-cluster state   to mm/swap_state.c, renaming mm/swap.c to mm/folio.c, and moving   MM-internal reclaim declarations into mm/internal.h. - &quot;userfaultfd: working set tracking for VM guest memory&quot; (Kiryl   Shutsemau)   Add userfaultfd support for tracking the working set of VM guest   memory, so a VMM can identify hot pages and reclaim cold ones to   tiered or remote storage - &quot;mm: remove CONFIG_HAVE_BOOTMEM_INFO_NODE (Part 2)&quot; (David   Hildenbrand)   Remove the remaining pieces of CONFIG_HAVE_BOOTMEM_INFO_NODE,   performing some smaller cleanups around freeing of reserved vmemmap   pages on the way. - &quot;mm/damon: update probe hits for runtime parameter commits&quot; (SJ Park)   Ensure that DAMON&apos;s probe_hits attribute counter is properly updated   when monitoring intervals are changed at runtime, matching the   behavior of nr_accesses. To achieve this, it refactors and renames   existing helper functions for shared use, applies the updates to   probe_hits, and handles edge cases in damon_probe_hits_mvsum() to   maintain measurement accuracy. - &quot;KSM: performance optimizations for rmap_walk_ksm&quot; (xu xin)   Resolve a severe KSM reverse-mapping performance bottleneck where   thousands of split VMAs sharing a single anon_vma cause extended lock   contention.   By adding an interval-filtering check during the rmap walk, it   reduces worst-case anon_vma lock hold times from over 500ms down to   under 2ms, preventing application freezes and latency spikes under   memory pressure. - &quot;mm: split a couple of headers from internal.h&quot; (Mike Rapoport)   Split declarations related to mm_init, memblock, vmalloc and sparse   into new headers - &quot;KSM: use linear_page_index in collect_procs_ksm()&quot; (xu xin)   Apply the interval tree optimization from rmap_walk_ksm() to   collect_procs_ksm() to avoid iterating over non-matching VMAs during   KSM memory error handling.   It hoists loop-invariant address initialization and restricts the   anon_vma_interval_tree_foreach walk to a targeted page offset range,   reducing redundant checks and improving lookup efficiency. - &quot;selftests/mm: avoid false failures in hugetlb and KSM tests&quot; (Sayali   Patil)   Fix issues in the hugetlb and KSM MM selftest categories that can   report failures when the prerequisites for the tests are not   satisfied - &quot;mm/damon: introduce data attributes only monitoring&quot; (SJ Park)   Introduce attribute-weighted region management in DAMON, allowing   users to prioritize specific data attributes (such as page sizes or   cgroups) over or instead of access monitoring.   By assigning weights to attribute probes, DAMON can completely   disable access tracking and adjust monitoring regions based on   weighted probe-hit counters to optimize monitoring quality for   attribute-focused workloads. - &quot;mm/hmm: Add mmap lock-drop support for userfaultfd-backed mappings&quot;   (Stanislav Kinsburskii)   Extend hmm_range_fault() to support userfaultfd-backed regions by   allowing the mmap lock to be dropped during fault handling via a new   hmm_range_fault_locked() helper.   By accepting a locked pointer and signaling retry status when lock   release occurs, it enables page fault resolution in userfaultfd   regions while preserving backward compatibility for existing callers. - &quot;mm: make VMA page offset handling more consistent&quot; (Lorenzo Stoakes)   Clean up and standardize how vma-&gt;vm_pgoff is accessed and   manipulated across file-backed and anonymous mappings in the kernel   It introduces dedicated helper functions such as vma_start_pgoff(),   vma_end_pgoff(), vma_set_pgoff() and linear_page_delta() while   renaming rmap interval tree helpers to better reflect their   functionality.   These changes establish a cleaner foundation for future work that   will unify virtual page offset indexing for all anonymous and CoW&apos;d   folios. - &quot;mm: handle device-private PMDs in walk callbacks&quot; (Usama Arif)   Address kernel panics and state corruption caused by MM walk   callbacks reaching non-present device-private PMD swap entries   created during HMM migrations   It ensures that functions which acquire pmd_trans_huge_lock()   properly recognize device-private PMDs instead of assuming a present   THP or a standard migration entry. - &quot;mm/rmap: Refactor try_to_unmap_one&quot; (Dev Jain)   Refactor try_to_unmap_one by modularizing Hugetlb,   anonymous-lazyfree, and anonymous-swapbacked logic into dedicated   functions, laying the structural groundwork for batched anonymous   large folio unmapping. - &quot;Docs/ABI/damon: sysfs ABI document fixes and additions&quot; (Song Hu)   Fix typos and fills in missing entries in the DAMON sysfs ABI   document - &quot;dax/kmem: atomic whole-device hotplug via sysfs&quot; (Gregory Price)   Introduce an atomic sysfs state attribute and supporting DAX/MM   infrastructure to prevent userland races when offlining and removing   entire memory regions   By adding an unplugged state alongside standard online modes, it   enables whole-device atomic hotplug control while preserving backward   compatibility. - &quot;mm: convert more vm_flags_t users to vma_flags_t&quot; (Lorenzo Stoakes)   Continue transitioning the kernel from the deprecated vm_flags_t type   to vma_flags_t across core memory management infrastructure.   It replaces legacy type usage in core functions such as do_mmap(),   unmapped area allocation, mm-&gt;def_vma_flags, and VMA operations like   mlock, mprotect, and mremap. - &quot;Two small patches to clean up mm/mm_slot.h&quot; (xu xin)   Refactor mm_slot.h by introducing mm_slot_remove() to unify duplicate   slot deletion sequences in khugepaged and KSM. It also adds code   documentation explaining why mm_slot_lookup and mm_slot_insert must   remain as preprocessor macros rather than static inline functions. - &quot;mm/damon/core: hide core-private struct fields&quot; (SJ Park)   Clean up DAMON core structures by consistently marking internal-only   fields with private: comment tags to prevent improper direct access   from outer layers.   It enforces encapsulation across core structures including   damon_region, damon_target, and damon_ctx and updates DAMON_SYSFS to   interact through approved access APIs instead of exposing raw struct   members. - &quot;mm/damon: unurgent fixes for infinite loop, NULL de-ref and races&quot;   (SJ Park)   Address potential infinite loops, NULL dereferences, and race   conditions identified in DAMON   It fixes an infinite loop triggered by extreme user configurations, a   NULL pointer dereference within unit tests and minor monitoring   accuracy degradation caused by subtle runtime races. - &quot;mm/page_alloc: fixes for free_pages_nolock() on RT/UP&quot; (Brendan   Jackman)   Fix an NMI safety flaw in __free_frozen_pages() where freeing pages   on non-SMP or PREEMPT_RT kernels can bypass can_spin_trylock() checks   via non-PCP or isolated migration paths.   It also resolves potential kernel crashes and privilege escalation   risks triggered when BPF tracing runs in NMI context alongside memory   hotplug or large allocation frees. - &quot;mm/page_alloc: couple of followups for recent cleanups&quot; (Brendan   Jackman)   Clean up and update page allocator nomenclature, documentation, and   debug assertions.   It aligns internal FPI_ flags with the public &quot;nolock&quot; naming   convention, removes outdated internal implementation details from   high-level page allocator comments, and eliminates obsolete   VM_BUG_ON() assertions in allocation paths. - &quot;mm/mseal: further cleanups&quot; (Lorenzo Stoakes)   Refactor and simplify the mseal implementation by clarifying API   boundaries and removing unnecessary code complexity.   It replaces generic do_mseal() usage outside the syscall with a   dedicated mseal_mmap_page_zero() helper for MMAP_PAGE_ZERO,   eliminates mm_struct parameters to enforce that sealing applies only   to current-&gt;mm, and streamlines overall logic and comments with no   functional changes intended. - &quot;mm/vmscan: fix swappiness=max and clean up per-node proactive   reclaim&quot; (Ridong Chen)   Resolve reclaim behavior bugs and clean up function parameters across   memory reclaim paths   It fixes swappiness=max in both standard reclaim and MGLRU so   unswappable anonymous memory no longer falls back to evicting page   cache, ensures reclaim_store() returns accurate error codes instead   of collapsing all failures into -EAGAIN, and removes the obsolete   gfp_mask parameter from __node_reclaim(). - &quot;mm: mincore: misc cleanups&quot; (Kefeng Wang)   Clean up and simplifies the mincore code. Most importantly, it   removes the historical special behavior that always reports VM_PFNMAP   pages as non-resident. - &quot;mm/huge_memory: drop dead split helper variants&quot; (Kiryl Shutsemau)   Two trivial cleanups in the folio split API - &quot;mm/damon: fix uninitialized DAMOS field and kunit exec expectation   bugs&quot; (SJ Park)   Resolve minor operational and testing bugs in DAMON identified by   Sashiko. It initializes the damos-&gt;last_applied field to prevent   occasional efficiency degradation and fixes invalid memory accesses   in DAMON KUnit tests during test failure handling. - &quot;cleanup for stable_page_flags()&quot; (Jinjiang Tu)   Clean up and refactor stable_page_flags() used by /proc/kpageflags   without altering functionality.   It uses BIT_ULL() to prevent shift-overflow warnings on 64-bit flag   bits, converts folio-specific flag checks to standard folio_test_*()   helpers, and removes redundant CONFIG_PAGE_IDLE_FLAG handling. - &quot;Batch unmap of uffd-wp file folios&quot; (Dev Jain)   Extend batched folio unmapping support to file folios within   userfaultfd write-protect (uffd-wp) VMAs by adding batching   capabilities to pte_install_uffd_wp_if_needed().   This removes special-case restrictions on uffd-wp VMAs in   try_to_unmap_one(), significantly simplifying the function&apos;s control   flow and complexity. - &quot;mm/early_ioremap: clarify and clean up early_ioremap_reset()&quot;   (Sang-Heon Jeon)   Clarify and clean up the architecture-specific usage of   __late_set_fixmap() and __late_clear_fixmap() after   early_ioremap_reset()   It adds explicit documentation regarding when early_ioremap_reset()   must be called and removes redundant macro definitions and reset   calls in the RISC-V and ARM64 architectures. - &quot;mm: fix reclaim storms in defrag_mode&quot; (Johannes Weiner)   Address severe performance regressions, swap storms, and spurious   OOMs caused by vm.defrag_mode=1 under high memory pressure in Meta   production   It updates the page allocator slowpath so non-movable allocation   requests actively trigger direct reclaim and direct compaction at   pageblock_order scale, allowing them to claim whole pageblocks rather   than spinning unproductively. - &quot;zram: lockmap tweaks&quot; (Sebastian Siewior)   Optimize and fix lockdep tracking for zram devices by consolidating   per-entry lockmaps and isolate lock classes across multiple instances   This reduces memory overhead by replacing per-entry lockdep_map   instances with a single map per struct zram, and assigns a dynamic   lock_class_key to each instance to prevent false deadlock reports   when different zram devices are backed by distinct filesystems.* tag &apos;mm-stable-2026-08-18-18-39&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (501 commits)  selftests/mm: thuge-gen: fix test_shmget() for PAGE_SIZE check  selftests/mm: unpoison pages in memory-failure teardown  mm/shmem: downgrade final i_blocks check in shmem_evict_inode() to pr_warn()  mm/khugepaged: replace mutex_lock/mutex_unlock usage with guard macro  mm/zsmalloc: fix release order of locks in zs_page_migrate()  Documentation: zram: remove sections numbering  ksm: stop iterating VMAs when ksm_test_exit returns true  mm: fold userfaultfd_rwp() to false without CONFIG_ARCH_HAS_PTE_PROTNONE  mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch()  zram: use a custom key for each zram object  zram: move lockmap to be per-zram instead per table  selftests/mm: fix gup_longterm EINVAL error message  mm: page_alloc: fix non-movable reclaim storm in defrag_mode  mm: page_alloc: move capture_control to the page allocator  mm: compaction: support non-movable compaction for pageblock requests  mm: page_alloc: __GFP_FS lockdep annotation for direct compaction  hugetlb: evaluate subpool free state while locked  mm/damon: remove trailing semicolons after function definitions  mm/damon/ops-common: prevent migration fallback to non-target nodes  mm/damon: update outdated comment about DAMOS filter handling  ...

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Fri, 21 Aug 2026 03:17:08 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1edcd9d7e52f862de9f9b6d1b9fe7f172532ae82 - selftests/mm: remove obsolete hugetlb vmemmap test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#1edcd9d7e52f862de9f9b6d1b9fe7f172532ae82</link>
        <description>selftests/mm: remove obsolete hugetlb vmemmap testThe hugetlb vmemmap selftest was added to check the old HVO layout wheretail vmemmap pages reused the head page.  That assumption no longermatches the current HVO mapping layout.HVO now keeps a private backing page for the head vmemmap page and remapsredundant tail vmemmap pages to a shared read-only backing page.  The oldpage flag check is therefore testing an obsolete implementation detailrather than the current ABI or behavior.Remove the stale test and its build and run entries.[akpm@linux-foundation.org: don&apos;t clean old executables out of .gitignore]  Link: https://lore.kernel.org/CAHk-=wiHK5_oBUdUiNAaevmN9f-ORe+QBqbRefAZaw-RbgEn3w@mail.gmail.comLink: https://lore.kernel.org/20260710092427.3459121-1-songmuchun@bytedance.comSigned-off-by: Muchun Song &lt;songmuchun@bytedance.com&gt;Reviewed-by: Lorenzo Stoakes &lt;ljs@kernel.org&gt;Acked-by: David Hildenbrand (Arm) &lt;david@kernel.org&gt;Reviewed-by: SJ Park &lt;sj@kernel.org&gt;Cc: Liam R. Howlett &lt;liam@infradead.org&gt;Cc: Michal Hocko &lt;mhocko@suse.com&gt;Cc: Mike Rapoport &lt;rppt@kernel.org&gt;Cc: Muchun Song &lt;muchun.song@linux.dev&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Vlastimil Babka &lt;vbabka@kernel.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Fri, 10 Jul 2026 11:24:27 +0200</pubDate>
        <dc:creator>Muchun Song &lt;songmuchun@bytedance.com&gt;</dc:creator>
    </item>
<item>
        <title>efe86f088f48f18c27b648e5724048947f3b7fb4 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#efe86f088f48f18c27b648e5724048947f3b7fb4</link>
        <description>Merge drm/drm-next into drm-xe-nextSync some i915/display changesSigned-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 15:40:31 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6d177908bad5992e17669030db41caab88041d5e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#6d177908bad5992e17669030db41caab88041d5e</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.2-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 14:55:43 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get drm-misc-next to v7.2-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 10:16:00 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7dd19adaaac9a161723a24de7c270861063ec6ac - Merge tag &apos;v7.2-rc1&apos; into drm-rust-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#7dd19adaaac9a161723a24de7c270861063ec6ac</link>
        <description>Merge tag &apos;v7.2-rc1&apos; into drm-rust-nextMerge v7.2-rc1 into drm-rust-next to start the next cycle.Devres now requires T: &apos;static, which conflicts with shmem::Object usingDevres&lt;SGTableMap&lt;T, C&gt;&gt; without that bound. Resolve by adding &apos;staticas a supertrait to DriverObject and DeviceContext, which does notrestrict any current use cases since DriverObject is always implementedon owned, refcounted types and DeviceContext is a sealed marker traitwith only unit-type implementors.If DriverObject (or DeviceContext) ever becomes lifetime-parameterized(e.g. via a GAT for TTM backed objects), the &apos;static supertrait can berelaxed at that point.Signed-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Sun, 28 Jun 2026 22:39:43 +0200</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3d5e48944e824bddc20d7b874e784f7b279636fe - Merge branch &apos;for-7.3/steam&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#3d5e48944e824bddc20d7b874e784f7b279636fe</link>
        <description>Merge branch &apos;for-7.3/steam&apos; into for-linus- initial support for 2026 Steam Controller (Vicki Pfau)- support for sensor events on the 2025 Steam Controller (Vicki Pfau)- assorted fixes, improvements and code refactoring (Vicki Pfau)

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Wed, 19 Aug 2026 09:16:28 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>0eaed89c18aeedf0898baf2dbf5ff027c6795152 - Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#0eaed89c18aeedf0898baf2dbf5ff027c6795152</link>
        <description>Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource  - Use designated initializers for sh_mtu2, sh_cmt, and sh_tmu, and    drop the unused initializer in the platform_device_id table for    sh_mtu2 (Uwe Kleine-K&#246;nig)  - Remove redundant dev_err()/dev_err_probe() messages when    devm_request_*_irq() fails, as the helper already logs an error    message (Pan Chuang)  - Fix a boot hang on Allwinner D1 when a forced minimum delta is used    with the sun4i timer (Felix Yan)  - Fix an IRQ leak in the cpuhp_setup_state() error path by freeing the    IRQ on failure in the NXP PIT driver (WenTao Liang)  - Fix incorrect unmapping of shared MMIO between the clocksource and    clockevent drivers. If one of them fails to initialize, the error    path unmaps the shared MMIO region, leaving the other driver with an    invalid mapping on clps711x (Guangshuo Li)  - Make the samsung_pwm driver compatible with PREEMPT_RT by replacing    regular spinlocks with raw_spinlock_t in atomic contexts (Marek    Szyprowski)  - Use __raw_readl() and __raw_writel() instead of ioread32() and    iowrite32() to support SWAP_IO_SPACE in the rtl-otto driver (Rustam    Adilov)  - Fix a missing clk_disable_unprepare() call in the timer    initialization error path of the Armada driver (Yuho Choi)Link: https://lore.kernel.org/lkml/75feea31-683d-45a1-87f4-ab045e0152ae@oss.qualcomm.com

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Mon, 17 Aug 2026 10:29:52 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4d85f863e5a6f1fa01b186001af0f68f4f5239e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#b4d85f863e5a6f1fa01b186001af0f68f4f5239e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.3 merge window.

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Sat, 15 Aug 2026 06:26:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>76904fccf81936c084faebc73ac72c0919a42941 - Merge tag &apos;v7.2-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#76904fccf81936c084faebc73ac72c0919a42941</link>
        <description>Merge tag &apos;v7.2-rc3&apos; into nextSync up with mainline to pull in stable fixes to avoid merge conflicts.

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 04:06:00 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>00599d4841790d05401820a96cf7edb193888b00 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#00599d4841790d05401820a96cf7edb193888b00</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesPull in tag v7.2-rc1 so that drm-misc-fixes becomes useful again,and drm-misc-next-fixes can be closed.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Mon, 29 Jun 2026 17:58:00 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>a1a8bab74176eed204a3139ab7ad840caa3d73b8 - Merge tag &apos;mm-stable-2026-06-23-08-55&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#a1a8bab74176eed204a3139ab7ad840caa3d73b8</link>
        <description>Merge tag &apos;mm-stable-2026-06-23-08-55&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull more MM updates from Andrew Morton: - &quot;khugepaged: add mTHP collapse support&quot; (Nico Pache)   Provide khugepaged with the capability to collapse anonymous memory   regions to mTHPs - &quot;Remove CONFIG_READ_ONLY_THP_FOR_FS and enable file THP for writable   files&quot; (Zi Yan)   Remove the READ_ONLY_THP_FOR_FS check in file_thp_enabled(), so that   khugepaged and MADV_COLLAPSE can run on filesystems with PMD THP   pagecache support even without READ_ONLY_THP_FOR_FS enabled - &quot;make MM selftests more CI friendly&quot; (Mike Rapoport)   General fixes and cleanups to the MM selftests. Also move more MM   selftests under the kselftest framework, making them more amenable to   ongoing CI testing - &quot;selftests/mm: fix failures and robustness improvements&quot; and   &quot;selftests/mm: assorted fixes for hmm-tests&quot; (Sayali Patil)   Fix several issues in MM selftests which were revealed by powerpc 64k   pagesize* tag &apos;mm-stable-2026-06-23-08-55&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (118 commits)  Revert &quot;mm: limit filemap_fault readahead to VMA boundaries&quot;  mm/vmscan: pass NULL to trace vmscan node reclaim  mm: use mapping_mapped to simplify the code  selftests/mm: fix exclusive_cow test fork() handling  selftests/mm: remove hardcoded THP sizing assumptions in hmm tests  selftests/mm: allow PUD-level entries in compound testcase of hmm tests  mm/gup_test: reject wrapped user ranges  mm/page_frag: reject invalid CPUs in page_frag_test  mm/damon/core: always put unsuccessfully committed target pids  mm: page_isolation: avoid unsafe folio reads while scanning compound pages  mm/shrinker: do not hold RCU lock in shrinker_debugfs_count_show()  selftests: mm: fix and speedup &quot;droppable&quot; test  mm: merge writeout into pageout  MAINTAINERS: add Hao Ge as reviewer for codetag and alloc_tag  selftests/mm: clarify alternate unmapping in compaction_test  selftests/mm: move hwpoison setup into run_test() and silence modprobe output for memory-failure category  selftests/mm: skip uffd-stress test when nr_pages_per_cpu is zero  selftests/mm: skip uffd-wp-mremap if UFFD write-protect is unsupported  selftests/mm: ensure destination is hugetlb-backed in hugetlb-mremap  selftest/mm: register existing mapping with userfaultfd in hugetlb-mremap  ...

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 23 Jun 2026 21:03:44 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7a0e692a0381254b2f77c54dec100cd3325a6fdf - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#7a0e692a0381254b2f77c54dec100cd3325a6fdf</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.2 merge window.

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Tue, 23 Jun 2026 08:10:08 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>81afb1ee7b2fb8b533aaa5cbd907fd000e60f193 - selftests/mm: rename thp_settings.[ch] to hugepage_settings.[ch]</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#81afb1ee7b2fb8b533aaa5cbd907fd000e60f193</link>
        <description>selftests/mm: rename thp_settings.[ch] to hugepage_settings.[ch]...  for upcoming addition of HugeTLB helpers.Link: https://lore.kernel.org/20260511162840.375890-24-rppt@kernel.orgSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Tested-by: Luiz Capitulino &lt;luizcap@redhat.com&gt;Tested-by: Sarthak Sharma &lt;sarthak.sharma@arm.com&gt;Cc: Baolin Wang &lt;baolin.wang@linux.alibaba.com&gt;Cc: Barry Song &lt;baohua@kernel.org&gt;Cc: David Hildenbrand &lt;david@kernel.org&gt;Cc: Dev Jain &lt;dev.jain@arm.com&gt;Cc: Donet Tom &lt;donettom@linux.ibm.com&gt;Cc: Jason Gunthorpe &lt;jgg@ziepe.ca&gt;Cc: John Hubbard &lt;jhubbard@nvidia.com&gt;Cc: Lance Yang &lt;lance.yang@linux.dev&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Liam Howlett &lt;liam@infradead.org&gt;Cc: Li Wang &lt;li.wang@linux.dev&gt;Cc: Lorenzo Stoakes &lt;ljs@kernel.org&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: Michal Hocko &lt;mhocko@suse.com&gt;Cc: Nico Pache &lt;npache@redhat.com&gt;Cc: Peter Xu &lt;peterx@redhat.com&gt;Cc: Ryan Roberts &lt;ryan.roberts@arm.com&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Vlastimil Babka &lt;vbabka@kernel.org&gt;Cc: Zi Yan &lt;ziy@nvidia.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Mon, 11 May 2026 18:28:07 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a93cbee5275104d51d30a7d392d10fae2b58bfc0 - selftests/mm: rename hugepage-* tests to hugetlb-*</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/mm/Makefile#a93cbee5275104d51d30a7d392d10fae2b58bfc0</link>
        <description>selftests/mm: rename hugepage-* tests to hugetlb-*hugepage could mean both THP and HugeTLB these days.Rename hugepage-* tests for HugeTLB to hugetlb-* to avoid confusion.Make sure that Makefile update keeps alphabetical ordering of theTEST_GEN_FILES entries.Keep old binary names in .gitignore because Linus prefers it this way.Link: https://lore.kernel.org/20260511162840.375890-8-rppt@kernel.orgSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Reviewed-by: Donet Tom &lt;donettom@linux.ibm.com&gt;Reviewed-by: Li Wang &lt;li.wang@linux.dev&gt;Tested-by: Sarthak Sharma &lt;sarthak.sharma@arm.com&gt;Tested-by: Luiz Capitulino &lt;luizcap@redhat.com&gt;Cc: Baolin Wang &lt;baolin.wang@linux.alibaba.com&gt;Cc: Barry Song &lt;baohua@kernel.org&gt;Cc: David Hildenbrand &lt;david@kernel.org&gt;Cc: Dev Jain &lt;dev.jain@arm.com&gt;Cc: Jason Gunthorpe &lt;jgg@ziepe.ca&gt;Cc: John Hubbard &lt;jhubbard@nvidia.com&gt;Cc: Lance Yang &lt;lance.yang@linux.dev&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Liam Howlett &lt;liam@infradead.org&gt;Cc: Lorenzo Stoakes &lt;ljs@kernel.org&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: Michal Hocko &lt;mhocko@suse.com&gt;Cc: Nico Pache &lt;npache@redhat.com&gt;Cc: Peter Xu &lt;peterx@redhat.com&gt;Cc: Ryan Roberts &lt;ryan.roberts@arm.com&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Suren Baghdasaryan &lt;surenb@google.com&gt;Cc: Vlastimil Babka &lt;vbabka@kernel.org&gt;Cc: Zi Yan &lt;ziy@nvidia.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/mm/Makefile</description>
        <pubDate>Mon, 11 May 2026 18:27:51 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
