Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965287AbbGVOot (ORCPT ); Wed, 22 Jul 2015 10:44:49 -0400 Received: from mailout4.w1.samsung.com ([210.118.77.14]:18301 "EHLO mailout4.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965154AbbGVOos (ORCPT ); Wed, 22 Jul 2015 10:44:48 -0400 X-AuditID: cbfec7f5-f794b6d000001495-c1-55afac5d0d47 Message-id: <55AFAC5A.5010507@samsung.com> Date: Wed, 22 Jul 2015 17:44:42 +0300 From: Andrey Ryabinin User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-version: 1.0 To: Alexey Klimov Cc: Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org, Arnd Bergmann , linux-mm@kvack.org, Linus Walleij , x86@kernel.org, Linux Kernel Mailing List , David Keitel , Ingo Molnar , Alexander Potapenko , "H. Peter Anvin" , Andrew Morton , Thomas Gleixner , Dmitry Vyukov , Yury Norov Subject: Re: [PATCH v3 1/5] mm: kasan: introduce generic kasan_populate_zero_shadow() References: <1437561037-31995-1-git-send-email-a.ryabinin@samsung.com> <1437561037-31995-2-git-send-email-a.ryabinin@samsung.com> In-reply-to: Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrCIsWRmVeSWpSXmKPExsVy+t/xK7qxa9aHGhxcp24xZ/0aNou/k46x W7xf1sNosfvSM2aLCQ/b2C3aP+5ltpi2Udzi1PmHLBZT/ixnstj0+BqrxeVdc9gs7q35z2px 6cACJovNm6YyW7z8eILF4seGx6wWD77pOAh6rJm3htHj969JjB6X+3qZPHbOusvusWBTqcem VZ1sHps+TWL3uHNtD5vHu3Pn2D1OzPjN4rF5Sb3H+31X2Tw+b5LzONHyhTWAL4rLJiU1J7Ms tUjfLoErY8v3p0wFF8Uqrh35x97A2C3YxcjJISFgInH57CVmCFtM4sK99WwgtpDAUkaJ/Rcc uhi5gOzvjBIXjr1gBEnwCmhJrL38AMxmEVCVuLV1MlgDm4CexL9Z28FsUYEIibeXTzJB1AtK /Jh8jwXEFgHqnfxqFzuIzSxwk0ViTr9mFyMHh7BAuMSP3X4Qu04xSpz78wBsDqdAsMSDWUdY QGqYBdQlpkzJhWiVl9i85i3zBEaBWUg2zEKomoWkagEj8ypG0dTS5ILipPRcI73ixNzi0rx0 veT83E2MkLj8uoNx6TGrQ4wCHIxKPLwTjq4LFWJNLCuuzD3EKMHBrCTC+3XZ+lAh3pTEyqrU ovz4otKc1OJDjNIcLErivDN3vQ8REkhPLEnNTk0tSC2CyTJxcEo1MOqlvVwUvanLOGbVXONJ sRdddq/cGzqFLWAF56n4jWUsqs+cPzz6MtHm3pEjctlZObMeHu0qDbUrtzWZd3a5ZvG8/SWb Cu+U1xcdY0mf9OJsrGKLcpW77OJXnaY3H0TafVMTkeP49+WoQfeXcKmjf+duCpo4ZeYEHz6r msBLfR1hR2fxs4XN7FViKc5INNRiLipOBABHZshkxwIAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3051 Lines: 96 On 07/22/2015 05:25 PM, Alexey Klimov wrote: > Hi Andrey, > > Could you please check minor comments below? > > On Wed, Jul 22, 2015 at 1:30 PM, Andrey Ryabinin wrote: >> Introduce generic kasan_populate_zero_shadow(start, end). >> This function maps kasan_zero_page to the [start, end] addresses. >> >> In follow on patches it will be used for ARMv8 (and maybe other >> architectures) and will replace x86_64 specific populate_zero_shadow(). >> >> Signed-off-by: Andrey Ryabinin >> --- >> arch/x86/mm/kasan_init_64.c | 8 +-- >> include/linux/kasan.h | 8 +++ >> mm/kasan/Makefile | 2 +- >> mm/kasan/kasan_init.c | 142 ++++++++++++++++++++++++++++++++++++++++++++ >> 4 files changed, 155 insertions(+), 5 deletions(-) >> create mode 100644 mm/kasan/kasan_init.c >> > > [..] > >> diff --git a/mm/kasan/kasan_init.c b/mm/kasan/kasan_init.c >> new file mode 100644 >> index 0000000..37fb46a >> --- /dev/null >> +++ b/mm/kasan/kasan_init.c >> @@ -0,0 +1,142 @@ >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> + >> +#include >> +#include >> + > > Are you releasing code under GPL? > Shouldn't there be any license header in such new file? > Sure, will do. ... >> + >> + if (pgd_none(*pgd)) { >> + void *p = early_alloc(PAGE_SIZE, NUMA_NO_NODE); >> + if (!p) >> + return -ENOMEM; >> + pgd_populate(&init_mm, pgd, p); >> + } >> + zero_pud_populate(pgd, addr, next); > > But you're not checking return value after zero_pud_populate() and > zero_pmd_populate() that might fail with ENOMEM. > Is it critical here on init or can they be converted to return void? > I think it's better to convert these functions to void. BTW, this check after early_alloc() is pointless because early_alloc() will panic if allocation failed. > >> +/** >> + * kasan_populate_zero_shadow - populate shadow memory region with >> + * kasan_zero_page >> + * @start - start of the memory range to populate >> + * @end - end of the memory range to populate >> + */ >> +void __init kasan_populate_zero_shadow(const void *start, const void *end) >> +{ >> + if (zero_pgd_populate((unsigned long)start, (unsigned long)end)) >> + panic("kasan: unable to map zero shadow!"); >> +} >> -- >> 2.4.5 >> >> >> _______________________________________________ >> linux-arm-kernel mailing list >> linux-arm-kernel@lists.infradead.org >> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel > > > -- 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/