Re: [PATCH 08/18] arm64: Implement try_update_vmemmap_pte using the AF trick
James Houghton <[email protected]>
| Newsgroups | org.infradead.lists.linux-arm-kernel,org.kernel.vger.linux-kernel,org.kvack.linux-mm |
|---|---|
| Message-ID | <CADrL8HVaa9a=E3+ABThCFzZWd15RPvXzR3QafDrztgJMAoG_Nw@mail.gmail.com> |
On Tue, Aug 18, 2026 at 7:10 AM Catalin Marinas <[email protected]> wrote: > > On Wed, Jul 08, 2026 at 03:11:18AM +0000, James Houghton wrote: > > diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h > > index 5f21d3a738ee..7b11aa41d0a0 100644 > > --- a/arch/arm64/include/asm/pgtable.h > > +++ b/arch/arm64/include/asm/pgtable.h > > @@ -1302,8 +1302,7 @@ static inline void __pte_clear(struct mm_struct *mm, > > __set_pte(ptep, __pte(0)); > > } > > > > -static inline bool __ptep_test_and_clear_young(struct vm_area_struct *vma, > > - unsigned long address, pte_t *ptep) > > +static inline pte_t __ptep_clear_young(pte_t *ptep) > > { > > pte_t old_pte, pte; > > > > @@ -1315,7 +1314,13 @@ static inline bool __ptep_test_and_clear_young(struct vm_area_struct *vma, > > pte_val(old_pte), pte_val(pte)); > > } while (pte_val(pte) != pte_val(old_pte)); > > > > - return pte_young(pte); > > + return pte; > > +} > > At some point, we should use LSE atomics directly here if supported > rather than a CAS loop (well, this is LSE as well if supported but it > doesn't guarantee forward progress of the loop). I reckon we can replace > it with some test_and_clear_bit_relaxed() call. I'll put a patch (or two) at the front of this series to do this. :) Will mentioned it too in my offline discussions with him. Will also pointed out that FEAT_LSE relaxed some of the forward progress guarantees[1], pretty strong justification to just use LDCLR. So unless you feel strongly, I'll skip performance testing for this change. [1] B2.12.5 (M.c) The bullet that begins with "If FEAT_LSE is not implemented". > > +static inline bool __ptep_test_and_clear_young(struct vm_area_struct *vma, > > + unsigned long address, pte_t *ptep) > > +{ > > + return pte_young(__ptep_clear_young(ptep)); > > } > > > > static inline bool __ptep_clear_flush_young(struct vm_area_struct *vma, > > @@ -1793,6 +1798,48 @@ static inline void pte_clear(struct mm_struct *mm, > > __pte_clear(mm, addr, ptep); > > } > > > > +#define __HAVE_ARCH_TRY_UPDATE_VMEMMAP_PTE > > +static inline int try_update_vmemmap_pte(unsigned long addr, pte_t *ptep, > > + const pte_t pte) > > +{ > > + const int max_attempts = 16; > > + int attempts = 0; > > + pte_t old_pte; > > + > > + if (!system_supports_hvo()) > > + return -EOPNOTSUPP; > > + > > + /* This routine is only to be used for valid-to-valid transitions. */ > > + if (WARN_ON_ONCE(!pte_valid(pte))) > > + return -EINVAL; > > + > > + old_pte = __ptep_get(ptep); > > + > > + do { > > + if (WARN_ON_ONCE(!pte_valid(old_pte))) > > + return -EINVAL; > > + > > + /* We should never get a contiguous PTE here. */ > > + if (WARN_ON_ONCE(pte_valid_cont(old_pte))) > > + return -EINVAL; > > + > > + if (pte_young(old_pte)) { > > + /* __ptep_clear_young() returns the overwritten PTE */ > > + old_pte = pte_mkold(__ptep_clear_young(ptep)); > > + > > + flush_tlb_kernel_range(addr, addr + PAGE_SIZE); > > + } > > I think this is going to do a lot of TLBIs given that the default kernel > prot has PTE_AF. It somewhat defeats the VMEMMAP_REMAP_NO_TLB_FLUSH > flag but I haven't figured exactly how this optimisation works. > > If it becomes a problem, we could do a first pass to clear AF as an > optimisation or later via vmemmap_split_pmd(), only map with AF=0. We > still have some page copying that touches the vmemmap, bringing AF back. > Of course, you'd still need the above flush, just wondering whether we > can reduce/coalesce it. We could reduce/coalesce the TLBIs (it should be very unlikely for the page structs of a to-be-optimized (or to-be-unoptimized) HugeTLB folio to be accessed, which is nice), but as far as I can tell, the TLBIs don't seem *too* slow yet. On my test system (single-socket, 80 CPUs, Neoverse V2), the TLBIs seem to take about half the total time required to free the vmemmap. This isn't great, but the absolute time taken isn't a problem for me (maybe because my machine is single-socket?). ``` $ echo 0 > /sys/kernel/mm/hugepages/hugepages-1048576kB/nr_hugepages $ time perf record -g -- bash -c "echo 288 > /sys/kernel/mm/hugepages/hugepages-1048576kB/nr_hugepages" real 0m1.271s user 0m0.076s # this is just perf :) sys 0m1.180s Trimmed perf report: + 47.44% 47.44% bash [kernel.kallsyms] [k] try_update_vmemmap_pte # In try_update_vmemmap_pte, it's the TLBI + ISB taking all of the time + 33.66% 33.62% bash [kernel.kallsyms] [k] prep_new_page + 10.71% 10.71% bash [kernel.kallsyms] [k] _raw_spin_unlock_irqrestore + 8.57% 4.86% bash [kernel.kallsyms] [k] __free_pages ``` Also checking to see if HugeTLB-2M is problematic; it doesn't appear to be. ``` HugeTLB-2M $ echo 0 > /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages $ time echo 10000 > /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages real 0m0.080s user 0m0.001s sys 0m0.079s ``` > > + /* > > + * Translations without AF cannot be cached, so we can replace > > + * them without BBM. > > + */ > > + } while (!try_cmpxchg_relaxed(&pte_val(*ptep), &pte_val(old_pte), > > + pte_val(pte)) && > > + ++attempts < max_attempts); > > + > > + return attempts == max_attempts ? -EAGAIN : 0; > > +} > > Here, indeed, we do need this bounded, otherwise some pathological cases > may set the AF continuously. > > -- > Catalin