]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
sparc32: mm: Don't try to free page-table pages if ctor() fails
authorWill Deacon <will@kernel.org>
Tue, 26 May 2020 17:33:00 +0000 (18:33 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jun 2020 15:48:29 +0000 (17:48 +0200)
[ Upstream commit 454b0289c6b5f2c66164654b80212d15fbef7a03 ]

The pages backing page-table allocations for SRMMU are allocated via
memblock as part of the "nocache" region initialisation during
srmmu_paging_init() and should not be freed even if a later call to
pgtable_pte_page_ctor() fails.

Remove the broken call to __free_page().

Cc: David S. Miller <davem@davemloft.net>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Fixes: 1ae9ae5f7df7 ("sparc: handle pgtable_page_ctor() fail")
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/sparc/mm/srmmu.c

index a8c2f2615fc6fe817d20b3492cea172f28c1325b..ecc9e8786d57ffe3ecdc712a526f68f7f3eef1c1 100644 (file)
@@ -383,7 +383,6 @@ pgtable_t pte_alloc_one(struct mm_struct *mm)
                return NULL;
        page = pfn_to_page(__nocache_pa(pte) >> PAGE_SHIFT);
        if (!pgtable_pte_page_ctor(page)) {
-               __free_page(page);
                return NULL;
        }
        return page;