From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752213AbaIYTaF (ORCPT ); Thu, 25 Sep 2014 15:30:05 -0400 Received: from mail-pd0-f201.google.com ([209.85.192.201]:43399 "EHLO mail-pd0-f201.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751267AbaIYTaD (ORCPT ); Thu, 25 Sep 2014 15:30:03 -0400 Date: Thu, 25 Sep 2014 12:30:00 -0700 From: Peter Feiner To: Stephen Rothwell Cc: Andrew Morton , Bjorn Helgaas , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Liviu Dudau Subject: Re: linux-next: manual merge of the akpm-current tree with the pci tree Message-ID: <20140925193000.GA26946@google.com> References: <20140925174730.302842e6@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140925174730.302842e6@canb.auug.org.au> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 25, 2014 at 05:47:30PM +1000, Stephen Rothwell wrote: > Hi Andrew, > > Today's linux-next merge of the akpm-current tree got a conflict in > include/asm-generic/pgtable.h between commit b766eafe6828 ("PCI: Add > pci_remap_iospace() to map bus I/O resources") from the pci tree and > commit 4cc2f91f2636 ("mm: softdirty: enable write notifications on VMAs > after VM_SOFTDIRTY cleared") from the akpm-current tree. > > I fixed it up (see below) and can carry the fix as necessary (no action > is required). > > -- > Cheers, > Stephen Rothwell sfr@canb.auug.org.au > > diff --cc include/asm-generic/pgtable.h > index 977e545a64c3,f6acf1195182..000000000000 > --- a/include/asm-generic/pgtable.h > +++ b/include/asm-generic/pgtable.h > @@@ -249,10 -249,18 +249,22 @@@ static inline int pmd_same(pmd_t pmd_a > #define pgprot_writecombine pgprot_noncached > #endif > > +#ifndef pgprot_device > +#define pgprot_device pgprot_noncached > +#endif > + > + #ifndef pgprot_modify > + #define pgprot_modify pgprot_modify > + static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) > + { > + if (pgprot_val(oldprot) == pgprot_val(pgprot_noncached(oldprot))) > + newprot = pgprot_noncached(newprot); > + if (pgprot_val(oldprot) == pgprot_val(pgprot_writecombine(oldprot))) > + newprot = pgprot_writecombine(newprot); For completeness of the arch-independent pgprot-modify, if (pgprot_val(oldprot) == pgprot_val(pgprot_device(oldprot))) newprot = pgprot_device(newprot); should be added here. > + return newprot; > + } > + #endif > + > /* > * When walking page tables, get the address of the next boundary, > * or the end address of the range if that comes earlier. Although no