From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760070AbbA2B6r (ORCPT ); Wed, 28 Jan 2015 20:58:47 -0500 Received: from mta-out1.inet.fi ([62.71.2.227]:54611 "EHLO kirsi1.inet.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760017AbbA2B6p (ORCPT ); Wed, 28 Jan 2015 20:58:45 -0500 Date: Wed, 28 Jan 2015 23:16:47 +0200 From: "Kirill A. Shutemov" To: Guenter Roeck Cc: "Kirill A. Shutemov" , Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/4] Introduce Message-ID: <20150128211647.GB15649@node.dhcp.inet.fi> References: <1422451064-109023-1-git-send-email-kirill.shutemov@linux.intel.com> <20150128185052.GA6118@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150128185052.GA6118@roeck-us.net> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jan 28, 2015 at 10:50:52AM -0800, Guenter Roeck wrote: > On Wed, Jan 28, 2015 at 03:17:40PM +0200, Kirill A. Shutemov wrote: > > This patchset moves definition of mm_struct into separate header file. > > It allows to get rid of nr_pmds if PMD page table level is folded. > > We cannot do it with current mm_types.h because we need > > __PAGETABLE_PMD_FOLDED from which creates circular > > dependencies. > > > > I've done few build tests and looks like it works, but I expect breakage > > on some configuration. Please test. > > > Doesn't look good. > > Build results: > total: 134 pass: 63 fail: 71 > Failed builds: > avr32:defconfig > avr32:merisc_defconfig > avr32:atngw100mkii_evklcd101_defconfig Fixlet for AVR32: diff --git a/arch/avr32/include/asm/pgtable.h b/arch/avr32/include/asm/pgtable.h index 35800664076e..3af39532b25b 100644 --- a/arch/avr32/include/asm/pgtable.h +++ b/arch/avr32/include/asm/pgtable.h @@ -10,11 +10,6 @@ #include -#ifndef __ASSEMBLY__ -#include - -#endif /* !__ASSEMBLY__ */ - /* * Use two-level page tables just as the i386 (without PAE) */ diff --git a/arch/avr32/mm/tlb.c b/arch/avr32/mm/tlb.c index 0da23109f817..964130f8f89d 100644 --- a/arch/avr32/mm/tlb.c +++ b/arch/avr32/mm/tlb.c @@ -8,6 +8,7 @@ * published by the Free Software Foundation. */ #include +#include #include -- Kirill A. Shutemov