From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michal Hocko Subject: Re: [PATCH 0/7] 5-level paging: prepare generic code Date: Wed, 8 Mar 2017 16:38:38 +0100 Message-ID: <20170308153837.GA27822@dhcp22.suse.cz> References: <20170306204514.1852-1-kirill.shutemov@linux.intel.com> <20170308142501.GB11034@dhcp22.suse.cz> <20170308150742.aaqfknxhurvvrvsl@black.fi.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20170308150742.aaqfknxhurvvrvsl@black.fi.intel.com> Sender: owner-linux-mm@kvack.org To: "Kirill A. Shutemov" Cc: Linus Torvalds , Andrew Morton , x86@kernel.org, Thomas Gleixner , Ingo Molnar , Arnd Bergmann , "H. Peter Anvin" , Andi Kleen , Dave Hansen , Andy Lutomirski , linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org List-Id: linux-arch.vger.kernel.org On Wed 08-03-17 18:07:42, Kirill A. Shutemov wrote: > On Wed, Mar 08, 2017 at 03:25:01PM +0100, Michal Hocko wrote: > > Btw. my build test machinery has reported this: > > microblaze/allnoconfig > > Thanks. > > Fixup is below. I guess it should be folded into 4/7. yes, this has passed the testing > > diff --git a/arch/microblaze/include/asm/page.h b/arch/microblaze/include/asm/page.h > index fd850879854d..d506bb0893f9 100644 > --- a/arch/microblaze/include/asm/page.h > +++ b/arch/microblaze/include/asm/page.h > @@ -95,7 +95,8 @@ typedef struct { unsigned long pgd; } pgd_t; > # else /* CONFIG_MMU */ > typedef struct { unsigned long ste[64]; } pmd_t; > typedef struct { pmd_t pue[1]; } pud_t; > -typedef struct { pud_t pge[1]; } pgd_t; > +typedef struct { pud_t p4e[1]; } p4d_t; > +typedef struct { p4d_t pge[1]; } pgd_t; > # endif /* CONFIG_MMU */ > > # define pte_val(x) ((x).pte) > -- > Kirill A. Shutemov -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de ([195.135.220.15]:58270 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751494AbdCHQOf (ORCPT ); Wed, 8 Mar 2017 11:14:35 -0500 Date: Wed, 8 Mar 2017 16:38:38 +0100 From: Michal Hocko Subject: Re: [PATCH 0/7] 5-level paging: prepare generic code Message-ID: <20170308153837.GA27822@dhcp22.suse.cz> References: <20170306204514.1852-1-kirill.shutemov@linux.intel.com> <20170308142501.GB11034@dhcp22.suse.cz> <20170308150742.aaqfknxhurvvrvsl@black.fi.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170308150742.aaqfknxhurvvrvsl@black.fi.intel.com> Sender: linux-arch-owner@vger.kernel.org List-ID: To: "Kirill A. Shutemov" Cc: Linus Torvalds , Andrew Morton , x86@kernel.org, Thomas Gleixner , Ingo Molnar , Arnd Bergmann , "H. Peter Anvin" , Andi Kleen , Dave Hansen , Andy Lutomirski , linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Message-ID: <20170308153838.yrfeYC8d9bh9Km149XzBaNZjuBQBgIewr_o6VU3ExsU@z> On Wed 08-03-17 18:07:42, Kirill A. Shutemov wrote: > On Wed, Mar 08, 2017 at 03:25:01PM +0100, Michal Hocko wrote: > > Btw. my build test machinery has reported this: > > microblaze/allnoconfig > > Thanks. > > Fixup is below. I guess it should be folded into 4/7. yes, this has passed the testing > > diff --git a/arch/microblaze/include/asm/page.h b/arch/microblaze/include/asm/page.h > index fd850879854d..d506bb0893f9 100644 > --- a/arch/microblaze/include/asm/page.h > +++ b/arch/microblaze/include/asm/page.h > @@ -95,7 +95,8 @@ typedef struct { unsigned long pgd; } pgd_t; > # else /* CONFIG_MMU */ > typedef struct { unsigned long ste[64]; } pmd_t; > typedef struct { pmd_t pue[1]; } pud_t; > -typedef struct { pud_t pge[1]; } pgd_t; > +typedef struct { pud_t p4e[1]; } p4d_t; > +typedef struct { p4d_t pge[1]; } pgd_t; > # endif /* CONFIG_MMU */ > > # define pte_val(x) ((x).pte) > -- > Kirill A. Shutemov -- Michal Hocko SUSE Labs