Re: [PATCH mm-unstable v18 06/14] mm/khugepaged: generalize collapse_huge_page for mTHP collapse
From: "David Hildenbrand (Arm)" <david@kernel.org>
Date: 2026-06-05 07:18:44
Also in:
linux-doc, linux-mm, lkml
On 6/4/26 19:04, Nico Pache wrote:
On Mon, Jun 1, 2026 at 9:00 AM Nico Pache [off-list ref] wrote:quoted
On Mon, Jun 1, 2026 at 5:14 AM David Hildenbrand (Arm) [off-list ref] wrote:quoted
Yeah. BTW, I think we'd need a spin_lock_nested(), so @Nico, treat my code as a draft.Okay, I read the above and did some investigating. I will try to implement and verify the changes you suggested :)I've implemented something slightly different actually and I *think* its better! } else { /* this is map_anon_folio_pte_nopf with no mmu update */ __map_anon_folio_pte_nopf(folio, pte, vma, start_addr, /*uffd_wp=*/ false); smp_wmb(); pmd_populate(mm, pmd, pmd_pgtable(_pmd)); /* * Some architectures (e.g. MIPS) walk the live page table in * their implementation. update_mmu_cache_range() must be called * with a valid page table hierarchy and the PTE lock held. * Acquire it nested inside pmd_ptl when they are distinct locks. */ if (pte_ptl != pmd_ptl) spin_lock_nested(pte_ptl, SINGLE_DEPTH_NESTING); update_mmu_cache_range(NULL, vma, start_addr, pte, nr_pages); if (pte_ptl != pmd_ptl) spin_unlock(pte_ptl); } spin_unlock(pmd_ptl); The logic here is that when the PMD becomes visible, PTEs are already populated (no possibility of spurious faults on local CPU) the SMP_WMB makes sure of the above And the pmd is installed with the pte and pmd lock both held through the mmu_cache update. This follows the conventions used in pmd_install() and clears the potential for local CPU faults hitting cleared PTE entries.
After the pmdp_collapse_flush() we'd be getting CPU faults due to the cleared PMD already? So the case here is rather different. -- Cheers, David