Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-07-15 13:34:04 to 2026-07-15 19:59:08 UTC [more...]

[RFC PATCH v2 00/10] dma-mapping: Add preservation of direct allocations
 2026-07-15 19:58 UTC  (3+ messages)
` [RFC PATCH v2 03/10] dma: contiguous: Add API to check if an allocation is from CMA

[PATCH] mm: vmscan: abort proactive reclaim early when freezing
 2026-07-15 19:58 UTC  (9+ messages)
` [PATCH v2] mm: vmscan: abort proactive reclaim early when freezing for suspend

[PATCH v2 00/33] mm: make VMA page offset handling more consistent
 2026-07-15 19:53 UTC  (29+ messages)
` [PATCH v2 01/33] mm: move vma_start_pgoff() into mm.h and clean up
` [PATCH v2 02/33] mm: add kdoc comments for vma_start/last_pgoff()
` [PATCH v2 03/33] tools/testing/vma: use vma_start_pgoff() in merge tests
` [PATCH v2 15/33] mm/vma: refactor vmg_adjust_set_range() for clarity
` [PATCH v2 16/33] mm/vma: minor cleanup of expand_[upwards, downwards]()
` [PATCH v2 17/33] mm: introduce and use linear_page_delta()
` [PATCH v2 18/33] mm/vma: use vma_start_pgoff(), linear_page_index() in mm code
` [PATCH v2 19/33] mm: prefer vma_[start,end]_pgoff() to vma->vm_pgoff in kernel/
` [PATCH v2 20/33] mm/vma: remove duplicative vma_pgoff_offset() helper
` [PATCH v2 21/33] mm: use linear_page_[index, delta]() consistently
` [PATCH v2 22/33] mm/vma: introduce vma_assert_can_modify()
` [PATCH v2 23/33] mm/vma: add and use vma_[add/sub]_pgoff()
` [PATCH v2 24/33] mm/vma: move __install_special_mapping() to vma.c
` [PATCH v2 25/33] mm/vma: make vma_set_range() static, drop insert_vm_struct() decl

[PATCH] mm: mglru: promote mapped executable folios after first usage
 2026-07-15 19:44 UTC  (2+ messages)

[PATCH] mm: shmem: make unused huge shrinker memcg aware
 2026-07-15 19:40 UTC  (3+ messages)

[PATCH 1/2] mm/page_alloc: don't spin_trylock() in NMI on UP
 2026-07-15 19:33 UTC  (3+ messages)
  ` [PATCH 2/2] mm/page_alloc: don't spin_trylock() when disallowed in free_one_page()
` [PATCH 0/2] mm/page_alloc: fixes for free_pages_nolock() on RT/UP

[PATCH mm-hotfixes v3 0/4] mm: fix UAF caused by race between ptdump and vmap pgtable freeing
 2026-07-15 19:14 UTC  (10+ messages)
` [PATCH mm-hotfixes v3 1/4] mm/vmalloc: acquire init_mm lock on huge vmap to avoid ptdump UAF
` [PATCH mm-hotfixes v3 2/4] x86/mm/pat: acquire mmap lock on page table free "
` [PATCH mm-hotfixes v3 3/4] mm/ptdump: always stabilise against page table freeing using init_mm

[PATCH 0/3] Batch unmap of uffd-wp file folios
 2026-07-15 18:58 UTC  (5+ messages)
` [PATCH 1/3] mm/memory: move pte_install_uffd_wp_if_needed() into memory.c
` [PATCH 2/3] mm/memory: batch set uffd-wp markers during zapping
` [PATCH 3/3] mm/rmap: batch unmap file folios belonging to uffd-wp VMAs

[PATCH v7 0/7] mm/vmalloc: Speed up ioremap, vmalloc and vmap with contiguous memory
 2026-07-15 18:37 UTC  (4+ messages)
` [PATCH v7 4/7] mm/vmalloc: Extend page table walk to support larger page_shift sizes and eliminate page table rewalk
` [PATCH v7 5/7] mm/vmalloc: Extract vm_shift() to consolidate mapping shift selection

[PATCH v9 0/8] mm/hmm: Add mmap lock-drop support for userfaultfd-backed mappings
 2026-07-15 18:16 UTC  (9+ messages)
` [PATCH v9 1/8] mm/hmm: move page fault handling out of walk callbacks
` [PATCH v9 2/8] mm/hmm: add hmm_range_fault_unlocked_timeout() for mmap lock-drop support
` [PATCH v9 3/8] selftests/mm: add HMM test for mmap lock-dropping faults
` [PATCH v9 4/8] mshv: Use hmm_range_fault_unlocked_timeout() for region faults
` [PATCH v9 5/8] drm/nouveau: Use hmm_range_fault_unlocked_timeout() for SVM faults
` [PATCH v9 6/8] RDMA/umem: Use hmm_range_fault_unlocked_timeout() for ODP faults
` [PATCH v9 7/8] accel/amdxdna: Use hmm_range_fault_unlocked_timeout() for range population
` [PATCH v9 8/8] drm/gpusvm: Use hmm_range_fault_unlocked_timeout() for range faults

[RFC v2 PATCH 0/16] Optimize this_cpu_*() ops for non-x86 (ARM64 for this series)
 2026-07-15 18:04 UTC  (17+ messages)
` [PATCH 01/16] drivers: arch_numa: move percpu set up code to arch
` [PATCH 02/16] arm64: kconfig: make percpu related configs not depend on NUMA
` [PATCH 03/16] mm: pgalloc: introduce {pud|pmd}_populate_sync()
` [PATCH 04/16] vmalloc: pass in pgd pointer for vmap{__vunmap}_range_noflush()
` [PATCH 05/16] arm64: mm: enable percpu kernel page table
` [PATCH 06/16] arm64: mm: defined {pud|pmd}_populate_sync()
` [PATCH 07/16] arm64: mm: sync percpu page table for memory hotplug/unplug
` [PATCH 08/16] arm64: kasan: sync up kasan shadow area page table
` [PATCH 09/16] arm64: mm: define percpu virtual space area
` [PATCH 10/16] mm: percpu: prepare to use dedicated percpu area
` [PATCH 11/16] arm64: mm: map local percpu first chunk
` [PATCH 12/16] mm: percpu: set up first chunk and reserve chunk
` [PATCH 13/16] arm64: mm: introduce __per_cpu_local_off
` [PATCH 14/16] mm: percpu: allocate and free local percpu vm area
` [PATCH 15/16] arm64: kconfig: select HAVE_LOCAL_PER_CPU_MAP
` [PATCH 16/16] arm64: percpu: use local percpu for this_cpu_*() APIs

[RFC v2 0/3] mm/mglru: proactive aging via memory.aging
 2026-07-15 17:55 UTC  (3+ messages)

[PATCH v10 0/6] mm/swap, memcg: Introduce swap tiers for cgroup based swap control
 2026-07-15 17:30 UTC  (13+ messages)

[PATCH v2 0/4] mm/hmm: Clarify notifier retry state and scope HMM timeouts
 2026-07-15 17:14 UTC  (8+ messages)

[PATCH RFC 00/13] mm/swap: introduce priority queue to remove global cluster cache and plist
 2026-07-15 16:38 UTC  (6+ messages)
` [PATCH RFC 09/13] mm/swap: add priority queue for swap device allocation

[PATCH] kho: align kho_scratch to MAX_ORDER_NR_PAGES pages
 2026-07-15 16:34 UTC  (2+ messages)

[RFC PATCH 00/10] mm/swap: ghost swapfile with backend switching via Redirect entries
 2026-07-15 16:17 UTC  (7+ messages)

mm: opaque hardware page-table entry handles
 2026-07-15 16:15 UTC  (4+ messages)

[BUG] mm/hugetlb: possible temporary resv underflow
 2026-07-15 16:15 UTC  (6+ messages)

[PATCH 0/2] mm/zswap: Fixes and improves the zswap global shrinker
 2026-07-15 16:14 UTC  (10+ messages)
` [PATCH 1/2] mm/zswap: Fix global shrinker when memory cgroup is disabled
` [PATCH 2/2] mm/zswap: Support batch writeback in shrink_memcg()

[PATCH RFC 00/12] mm/slab, alloc_tag: reduce obj_ext memory waste
 2026-07-15 16:13 UTC  (3+ messages)
  ` [PATCH RFC 01/12] mm/slab: skip kfence objects in allocation profiling
  ` [PATCH RFC 02/12] mm/slab: remove objs_per_slab()

better block swap batching and a different take on swap_ops v5
 2026-07-15 16:03 UTC  (3+ messages)
` [PATCH 3/7] mm/swap: also use struct swap_iocb for block I/O

[PATCH v3 00/11] dma-buf: heaps: Add support for Tegra VPR
 2026-07-15 16:01 UTC  (8+ messages)
` [PATCH v3 04/11] arm64/mm: Add set_memory_device() and set_memory_normal()

[PATCH 06/17] mm/sparse-vmemmap: support section-based vmemmap accounting
 2026-07-15 15:52 UTC  (4+ messages)
    ` [PATCH 01/17] mm/sparse: drop power-of-2 size requirement for struct mem_section

[PATCH 00/22] Simplify special kernel page table handling
 2026-07-15 15:07 UTC  (2+ messages)

[PATCH mm-hotfixes v2 0/4] mm: fix UAF caused by race between ptdump and vmap pgtable freeing
 2026-07-15 15:01 UTC  (6+ messages)

[PATCH] mm/secretmem: disable under HIGHMEM
 2026-07-15 14:58 UTC  (11+ messages)

[PATCH] selftests/mm: khugepaged: skip swap tests when swap is unavailable
 2026-07-15 14:47 UTC  (3+ messages)

[PATCH v2] mm/vmscan: clear hopeless kswapd when global direct reclaim makes progress
 2026-07-15 14:42 UTC  (4+ messages)

[PATCH v5 0/2] fs/proc/task_mmu: fix PAGEMAP_SCAN written state for PMD holes
 2026-07-15 14:42 UTC  (3+ messages)
` [PATCH v5 1/2] "
` [PATCH v5 2/2] selftests/mm: add PAGEMAP_SCAN test for THP "

[PATCH 1/4] mm: vmpressure: scale sampling window with machine size
 2026-07-15 14:36 UTC  (2+ messages)
` [PATCH 3/4] mm: vrealloc: grow vm_area mappings in place

[PATCH mm-unstable v1 2/3] mm/migrate.c: Prevent folio splitting from interacting with KSM
 2026-07-15 10:54 UTC  (2+ messages)

[RFC PATCH 10/34] x86: mm: carve out the generic compile-time folded pgtable case in effective_prot()
 2026-07-15 10:34 UTC  (10+ messages)

[PATCH v2 0/5] mm: fix inode UAF when splitting a file folio past EOF
 2026-07-15 13:01 UTC  (10+ messages)
` [PATCH v2 1/5] mm/memory-failure: keep the folio, not the poisoned subpage, locked across split

[PATCH v2 0/2] mm/vmscan: reduce lru_lock contention via vmstat-derived scan-balance cost
 2026-07-15 14:16 UTC  (5+ messages)
` [PATCH v2 1/2] mm/vmstat, mm/memcontrol: add _monotonic vmstat readers
` [PATCH v2 2/2] mm/vmscan: reduce lru_lock contention via vmstat-derived scan-balance cost

[PATCH v2] fs: push nr_cached_objects memcg gating into individual filesystems
 2026-07-15 10:35 UTC 

[PATCH 0/3] rust: sync: Introduce Rcu*Box
 2026-07-15 14:09 UTC  (3+ messages)
` [PATCH 2/3] rust: maple_tree: Add load_rcu()

[PATCH v4] fs/proc/task_mmu: fix PAGEMAP_SCAN written state for PMD holes
 2026-07-15 14:08 UTC  (3+ messages)

[PATCH] fs: push nr_cached_objects memcg gating into individual filesystems
 2026-07-15 10:26 UTC  (3+ messages)

[PATCH] mm/migrate_device: avoid overflowing migrate_vma collection arrays
 2026-07-15 12:40 UTC  (12+ messages)

[PATCH] hugetlb: only adjust reservation during unmapping if mapcount is 0
 2026-07-15 13:57 UTC 

[PATCH] damon: update outdated comment about DAMOS filter handling
 2026-07-15 13:56 UTC 

[PATCH v3 0/4] mm/page_alloc: couple of followups for recent cleanups
 2026-07-15 13:56 UTC  (9+ messages)
` [PATCH v3 1/4] mm/page_alloc: rename FPI_TRYLOCK -> FPI_NOLOCK
` [PATCH v3 3/4] mm/page_alloc: fixup alloc_pages_nolock_noprof() comment
` [PATCH v3 4/4] mm/page_alloc: remove a couple of VM_BUG_ON()st

[RFC PATCH 00/34] mm: optimize unnecessary loads due to ptep_get() and friends out
 2026-07-15 13:44 UTC  (3+ messages)
` [RFC PATCH 11/34] mm: vmscan: remove stack copy address of pud pass in wallk_pud_range()

Intermittent kernel WARN in mm.h get_page() when forcefully removing a xen_netfront interface from xenstore
 2026-07-15 11:16 UTC  (3+ messages)

[RFC PATCH] mm/page_reporting: Add page_reporting_delay sysctl
 2026-07-15 12:59 UTC  (2+ messages)

[PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket
 2026-07-15 11:07 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox