Patch "arm64: mm: fix p?d_leaf()" has been added to the 5.17-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    arm64: mm: fix p?d_leaf()

to the 5.17-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     arm64-mm-fix-p-d_leaf.patch
and it can be found in the queue-5.17 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 782de957da63a7502be08341c1623ca55638f8a9
Author: Muchun Song <songmuchun@xxxxxxxxxxxxx>
Date:   Fri Apr 22 14:00:33 2022 +0800

    arm64: mm: fix p?d_leaf()
    
    [ Upstream commit 23bc8f69f0eceecbb87c3801d2e48827d2dca92b ]
    
    The pmd_leaf() is used to test a leaf mapped PMD, however, it misses
    the PROT_NONE mapped PMD on arm64.  Fix it.  A real world issue [1]
    caused by this was reported by Qian Cai. Also fix pud_leaf().
    
    Link: https://patchwork.kernel.org/comment/24798260/ [1]
    Fixes: 8aa82df3c123 ("arm64: mm: add p?d_leaf() definitions")
    Reported-by: Qian Cai <quic_qiancai@xxxxxxxxxxx>
    Signed-off-by: Muchun Song <songmuchun@xxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220422060033.48711-1-songmuchun@xxxxxxxxxxxxx
    Signed-off-by: Will Deacon <will@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h
index 94e147e5456c..dff2b483ea50 100644
--- a/arch/arm64/include/asm/pgtable.h
+++ b/arch/arm64/include/asm/pgtable.h
@@ -535,7 +535,7 @@ extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
 				 PMD_TYPE_TABLE)
 #define pmd_sect(pmd)		((pmd_val(pmd) & PMD_TYPE_MASK) == \
 				 PMD_TYPE_SECT)
-#define pmd_leaf(pmd)		pmd_sect(pmd)
+#define pmd_leaf(pmd)		(pmd_present(pmd) && !pmd_table(pmd))
 #define pmd_bad(pmd)		(!pmd_table(pmd))
 
 #define pmd_leaf_size(pmd)	(pmd_cont(pmd) ? CONT_PMD_SIZE : PMD_SIZE)
@@ -625,7 +625,7 @@ static inline unsigned long pmd_page_vaddr(pmd_t pmd)
 #define pud_none(pud)		(!pud_val(pud))
 #define pud_bad(pud)		(!pud_table(pud))
 #define pud_present(pud)	pte_present(pud_pte(pud))
-#define pud_leaf(pud)		pud_sect(pud)
+#define pud_leaf(pud)		(pud_present(pud) && !pud_table(pud))
 #define pud_valid(pud)		pte_valid(pud_pte(pud))
 
 static inline void set_pud(pud_t *pudp, pud_t pud)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux