From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752826AbbIPW0A (ORCPT ); Wed, 16 Sep 2015 18:26:00 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:46228 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752596AbbIPWZl (ORCPT ); Wed, 16 Sep 2015 18:25:41 -0400 Date: Wed, 16 Sep 2015 15:25:40 -0700 From: Andrew Morton To: Vineet Gupta Cc: "Aneesh Kumar K.V" , "Kirill A. Shutemov" , Mel Gorman , "Matthew Wilcox" , Minchan Kim , , , , Subject: Re: [PATCH 08/11] mm,thp: reduce ifdef'ery for THP in generic code Message-Id: <20150916152540.b19aebc9f7a0889685867f1a@linux-foundation.org> In-Reply-To: <1440666194-21478-9-git-send-email-vgupta@synopsys.com> References: <1440666194-21478-1-git-send-email-vgupta@synopsys.com> <1440666194-21478-9-git-send-email-vgupta@synopsys.com> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 27 Aug 2015 14:33:11 +0530 Vineet Gupta wrote: > This is purely cosmetic, just makes code more readable > > ... > > --- a/include/asm-generic/pgtable.h > +++ b/include/asm-generic/pgtable.h > @@ -30,9 +30,20 @@ extern int ptep_set_access_flags(struct vm_area_struct *vma, > #endif > > #ifndef __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS > +#ifdef CONFIG_TRANSPARENT_HUGEPAGE > extern int pmdp_set_access_flags(struct vm_area_struct *vma, > unsigned long address, pmd_t *pmdp, > pmd_t entry, int dirty); > +#else /* CONFIG_TRANSPARENT_HUGEPAGE */ > +static inline int pmdp_set_access_flags(struct vm_area_struct *vma, > + unsigned long address, pmd_t *pmdp, > + pmd_t entry, int dirty) > +{ > + BUG(); > + return 0; > +} Is it possible to simply leave this undefined? So the kernel fails at link time? > --- a/mm/pgtable-generic.c > +++ b/mm/pgtable-generic.c Good heavens that file is a mess. Your patch does improve it.