On 08/12/2020 12:03 PM, Aneesh Kumar K.V wrote: > set_pmd_at() should not be used to set a pte entry at locations that > already holds a valid pte entry. Architectures like ppc64 don't do TLB > invalidate in set_pmd_at() and hence expect it to be used to set locations > that are not a valid PTE. > > Signed-off-by: Aneesh Kumar K.V <aneesh.ku...@linux.ibm.com> > --- > mm/debug_vm_pgtable.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/mm/debug_vm_pgtable.c b/mm/debug_vm_pgtable.c > index cd609a212dd4..60bf876081b8 100644 > --- a/mm/debug_vm_pgtable.c > +++ b/mm/debug_vm_pgtable.c > @@ -164,8 +164,6 @@ static void __init pmd_advanced_tests(struct mm_struct > *mm, > pmd = READ_ONCE(*pmdp); > WARN_ON(pmd_write(pmd)); > > - pmd = pmd_mkhuge(pfn_pmd(pfn, prot)); > - set_pmd_at(mm, vaddr, pmdp, pmd); > pmdp_huge_get_and_clear(mm, vaddr, pmdp); > pmd = READ_ONCE(*pmdp); > WARN_ON(!pmd_none(pmd)); > @@ -180,12 +178,11 @@ static void __init pmd_advanced_tests(struct mm_struct > *mm, > pmd = READ_ONCE(*pmdp); > WARN_ON(!(pmd_write(pmd) && pmd_dirty(pmd))); > > - pmd = pmd_mkhuge(pfn_pmd(pfn, prot)); > - set_pmd_at(mm, vaddr, pmdp, pmd); > pmdp_huge_get_and_clear_full(vma, vaddr, pmdp, 1); > pmd = READ_ONCE(*pmdp); > WARN_ON(!pmd_none(pmd)); > > + pmd = pmd_mkhuge(pfn_pmd(pfn, prot)); > pmd = pmd_mkyoung(pmd); > set_pmd_at(mm, vaddr, pmdp, pmd); > pmdp_test_and_clear_young(vma, vaddr, pmdp); > Very similar to [PATCH 3/16] wrt set_pte_at(), please fold it.
- Re: [PATCH 03/16] debug_vm_pgtable/set_pte: Don't u... Anshuman Khandual
- Re: [PATCH 03/16] debug_vm_pgtable/set_pte: Don... Aneesh Kumar K.V
- [PATCH 04/16] debug_vm_pgtables/hugevmap: Use the arch h... Aneesh Kumar K.V
- Re: [PATCH 04/16] debug_vm_pgtables/hugevmap: Use t... Anshuman Khandual
- [PATCH 05/16] debug_vm_pgtable/savedwrite: Enable savedw... Aneesh Kumar K.V
- Re: [PATCH 05/16] debug_vm_pgtable/savedwrite: Enab... Anshuman Khandual
- [PATCH 06/16] debug_vm_pgtable/THP: Mark the pte entry h... Aneesh Kumar K.V
- [PATCH 07/16] debug_vm_pgtable/THP: Mark the pte entry h... Aneesh Kumar K.V
- Re: [PATCH 07/16] debug_vm_pgtable/THP: Mark the pt... Anshuman Khandual
- [PATCH 08/16] debug_vm_pgtable/set_pmd: Don't use set_pm... Aneesh Kumar K.V
- Re: [PATCH 08/16] debug_vm_pgtable/set_pmd: Don't u... Anshuman Khandual
- [PATCH 09/16] debug_vm_pgtable/set_pud: Don't use set_pu... Aneesh Kumar K.V
- Re: [PATCH 09/16] debug_vm_pgtable/set_pud: Don't u... Anshuman Khandual
- [PATCH 10/16] debug_vm_pgtable/thp: Use page table depos... Aneesh Kumar K.V
- Re: [PATCH 10/16] debug_vm_pgtable/thp: Use page ta... Anshuman Khandual
- Re: [PATCH 10/16] debug_vm_pgtable/thp: Use pag... Aneesh Kumar K.V
- [PATCH 11/16] debug_vm_pgtable/locks: Move non page tabl... Aneesh Kumar K.V
- [PATCH 12/16] debug_vm_pgtable/locks: Take correct page ... Aneesh Kumar K.V
- [PATCH 13/16] debug_vm_pgtable/pmd_clear: Don't use pmd/... Aneesh Kumar K.V
- Re: [PATCH 13/16] debug_vm_pgtable/pmd_clear: Don't... Anshuman Khandual
- Re: [PATCH 13/16] debug_vm_pgtable/pmd_clear: D... Aneesh Kumar K.V