Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754137AbcC3OFy (ORCPT ); Wed, 30 Mar 2016 10:05:54 -0400 Received: from mga14.intel.com ([192.55.52.115]:47797 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754054AbcC3OFv convert rfc822-to-8bit (ORCPT ); Wed, 30 Mar 2016 10:05:51 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,416,1455004800"; d="scan'208";a="678001754" From: "Wilcox, Matthew R" To: Andrew Morton CC: Matthew Wilcox , "linux-mm@kvack.org" , "linux-nvdimm@ml01.01.org" , "linux-fsdevel@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "x86@kernel.org" Subject: RE: [PATCH v4 3/8] mm: Add support for PUD-sized transparent hugepages Thread-Topic: [PATCH v4 3/8] mm: Add support for PUD-sized transparent hugepages Thread-Index: AQHRigi+WCjXiBqUy0+fxl+U4YrW1Z9yBHwQ Date: Wed, 30 Mar 2016 14:05:29 +0000 Message-ID: <100D68C7BA14664A8938383216E40DE04220B3FF@FMSMSX114.amr.corp.intel.com> References: <1454242175-16870-1-git-send-email-matthew.r.wilcox@intel.com> <1454242175-16870-4-git-send-email-matthew.r.wilcox@intel.com> <20160329151710.6a256611fd28637d5c40ac3c@linux-foundation.org> In-Reply-To: <20160329151710.6a256611fd28637d5c40ac3c@linux-foundation.org> Accept-Language: en-CA, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.1.200.106] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2720 Lines: 67 It's awful. I have a v6 in the works which fixes a number of problems in v5, but there are about ten Kconfig options which the x86 code depends on. And then ... yes, there's this bad definition of pud_t on ARM. Arnd has a patch to fix that problem, Subject: [PATCH v2] [RFC] ARM: modify pgd_t definition for TRANSPARENT_HUGEPAGE_PUD. But 0day is still pointing out other problems with the current patchset, so I'd hold off on it until I get v6 posted if I were you. Thanks for picking up x86-unify-native__get_and_clear-smp-case.patch -----Original Message----- From: Andrew Morton [mailto:akpm@linux-foundation.org] Sent: Tuesday, March 29, 2016 3:17 PM To: Wilcox, Matthew R Cc: Matthew Wilcox; linux-mm@kvack.org; linux-nvdimm@ml01.01.org; linux-fsdevel@vger.kernel.org; linux-kernel@vger.kernel.org; x86@kernel.org Subject: Re: [PATCH v4 3/8] mm: Add support for PUD-sized transparent hugepages On Sun, 31 Jan 2016 23:09:30 +1100 Matthew Wilcox wrote: > From: Matthew Wilcox > > The current transparent hugepage code only supports PMDs. This patch > adds support for transparent use of PUDs with DAX. It does not include > support for anonymous pages. > > Most of this patch simply parallels the work that was done for huge PMDs. > The only major difference is how the new ->pud_entry method in mm_walk > works. The ->pmd_entry method replaces the ->pte_entry method, whereas > the ->pud_entry method works along with either ->pmd_entry or ->pte_entry. > The pagewalk code takes care of locking the PUD before calling ->pud_walk, > so handlers do not need to worry whether the PUD is stable. Why is this patchset always so hard to compile :( > ... > > --- a/include/linux/pfn_t.h > +++ b/include/linux/pfn_t.h > @@ -82,6 +82,13 @@ static inline pmd_t pfn_t_pmd(pfn_t pfn, pgprot_t pgprot) > { > return pfn_pmd(pfn_t_to_pfn(pfn), pgprot); > } > + > +#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD > +static inline pud_t pfn_t_pud(pfn_t pfn, pgprot_t pgprot) > +{ > + return pfn_pud(pfn_t_to_pfn(pfn), pgprot); > +} > +#endif > #endif > > #ifdef __HAVE_ARCH_PTE_DEVMAP > @@ -98,5 +105,6 @@ static inline bool pfn_t_devmap(pfn_t pfn) > } > pte_t pte_mkdevmap(pte_t pte); > pmd_t pmd_mkdevmap(pmd_t pmd); > +pud_t pud_mkdevmap(pud_t pud); arm allnoconfig: In file included from kernel/memremap.c:17: include/linux/pfn_t.h:107: error: 'pud_mkdevmap' declared as function returning an array because it expands to pgd_t pud_mkdevmap(pgd_t pud); and typedef unsigned long pgd_t[2]; Also the patch provides no implementation of pud_mkdevmap() so it's obviously going to break bisection.