Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934221AbbGVOR0 (ORCPT ); Wed, 22 Jul 2015 10:17:26 -0400 Received: from foss.arm.com ([217.140.101.70]:36238 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755216AbbGVORZ (ORCPT ); Wed, 22 Jul 2015 10:17:25 -0400 Date: Wed, 22 Jul 2015 15:17:20 +0100 From: Catalin Marinas To: Andrey Ryabinin Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, Arnd Bergmann , linux-mm@kvack.org, Linus Walleij , x86@kernel.org, linux-kernel@vger.kernel.org, David Keitel , Ingo Molnar , Alexander Potapenko , "H. Peter Anvin" , Andrew Morton , Thomas Gleixner , Dmitry Vyukov Subject: Re: [PATCH v3 1/5] mm: kasan: introduce generic kasan_populate_zero_shadow() Message-ID: <20150722141719.GA16627@e104818-lin.cambridge.arm.com> References: <1437561037-31995-1-git-send-email-a.ryabinin@samsung.com> <1437561037-31995-2-git-send-email-a.ryabinin@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1437561037-31995-2-git-send-email-a.ryabinin@samsung.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3882 Lines: 128 On Wed, Jul 22, 2015 at 01:30:33PM +0300, Andrey Ryabinin wrote: > diff --git a/arch/x86/mm/kasan_init_64.c b/arch/x86/mm/kasan_init_64.c > index e1840f3..2390dba 100644 > --- a/arch/x86/mm/kasan_init_64.c > +++ b/arch/x86/mm/kasan_init_64.c > @@ -12,9 +12,9 @@ > extern pgd_t early_level4_pgt[PTRS_PER_PGD]; > extern struct range pfn_mapped[E820_X_MAX]; > > -static pud_t kasan_zero_pud[PTRS_PER_PUD] __page_aligned_bss; > -static pmd_t kasan_zero_pmd[PTRS_PER_PMD] __page_aligned_bss; > -static pte_t kasan_zero_pte[PTRS_PER_PTE] __page_aligned_bss; > +pud_t kasan_zero_pud[PTRS_PER_PUD] __page_aligned_bss; > +pmd_t kasan_zero_pmd[PTRS_PER_PMD] __page_aligned_bss; > +pte_t kasan_zero_pte[PTRS_PER_PTE] __page_aligned_bss; > > /* > * This page used as early shadow. We don't use empty_zero_page > @@ -24,7 +24,7 @@ static pte_t kasan_zero_pte[PTRS_PER_PTE] __page_aligned_bss; > * that allowed to access, but not instrumented by kasan > * (vmalloc/vmemmap ...). > */ > -static unsigned char kasan_zero_page[PAGE_SIZE] __page_aligned_bss; > +unsigned char kasan_zero_page[PAGE_SIZE] __page_aligned_bss; Did you lose part of the patch when rebasing? I can see you copied kasan_populate_zero_shadow() to the mm code but it's still present in the x86 one and the above changes to remove static seem meaningless. Or you plan to submit the rest of the x86 code separately? BTW, you could even move kasan_zero_p[tme]d arrays to mm/. > +static int __init zero_pmd_populate(pud_t *pud, unsigned long addr, > + unsigned long end) > +{ > + int ret = 0; > + pmd_t *pmd = pmd_offset(pud, addr); > + unsigned long next; > + > + do { > + next = pmd_addr_end(addr, end); > + > + if (IS_ALIGNED(addr, PMD_SIZE) && end - addr >= PMD_SIZE) { > + pmd_populate_kernel(&init_mm, pmd, kasan_zero_pte); > + continue; > + } > + > + if (pmd_none(*pmd)) { > + void *p = early_alloc(PAGE_SIZE, NUMA_NO_NODE); > + if (!p) > + return -ENOMEM; > + pmd_populate_kernel(&init_mm, pmd, p); > + } > + zero_pte_populate(pmd, addr, pmd_addr_end(addr, end)); You could use "next" directly has the last argument here. > + } while (pmd++, addr = next, addr != end); > + > + return ret; > +} > + > +static int __init zero_pud_populate(pgd_t *pgd, unsigned long addr, > + unsigned long end) > +{ > + int ret = 0; > + pud_t *pud = pud_offset(pgd, addr); > + unsigned long next; > + > + do { > + next = pud_addr_end(addr, end); > + if (IS_ALIGNED(addr, PUD_SIZE) && end - addr >= PUD_SIZE) { > + pmd_t *pmd; > + > + pud_populate(&init_mm, pud, kasan_zero_pmd); > + pmd = pmd_offset(pud, addr); > + pmd_populate_kernel(&init_mm, pmd, kasan_zero_pte); > + continue; > + } > + > + if (pud_none(*pud)) { > + void *p = early_alloc(PAGE_SIZE, NUMA_NO_NODE); > + if (!p) > + return -ENOMEM; > + pud_populate(&init_mm, pud, p); > + } > + zero_pmd_populate(pud, addr, pud_addr_end(addr, end)); Same here. > + } while (pud++, addr = next, addr != end); > + > + return ret; > +} > + > +static int __init zero_pgd_populate(unsigned long addr, unsigned long end) > +{ > + int ret = 0; > + pgd_t *pgd = pgd_offset_k(addr); > + unsigned long next; > + > + do { > + next = pgd_addr_end(addr, end); > + > + if (IS_ALIGNED(addr, PGDIR_SIZE) && end - addr >= PGDIR_SIZE) { > + pud_t *pud; > + pmd_t *pmd; > + > + /* > + * kasan_zero_pud should be populated with pmds > + * at this moment. > + * [pud,pmd]_populate*() bellow needed only for s/bellow/below/ > + * 3,2 - level page tables where we don't have > + * puds,pmds, so pgd_populate(), pud_populate() > + * is noops. > + */ -- Catalin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/