From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759142Ab2J2OBG (ORCPT ); Mon, 29 Oct 2012 10:01:06 -0400 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:55566 "EHLO e06smtp17.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754914Ab2J2OBD (ORCPT ); Mon, 29 Oct 2012 10:01:03 -0400 Date: Mon, 29 Oct 2012 15:00:48 +0100 From: Gerald Schaefer To: Ingo Molnar Cc: Stephen Rothwell , Martin Schwidefsky , Heiko Carstens , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Peter Zijlstra , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Ralf Baechle , Peter Zijlstra Subject: Re: [PATCH] s390: Add pmd_mknotpresent() Message-ID: <20121029150048.21c062cf@thinkpad> In-Reply-To: <20121028131014.GA10754@gmail.com> References: <20121018172201.b81dcc8fe40868256f532364@canb.auug.org.au> <20121018182642.2a541275@thinkpad> <20121028131014.GA10754@gmail.com> Reply-To: gerald.schaefer@de.ibm.com X-Mailer: Claws Mail 3.7.9 (GTK+ 2.24.6; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit x-cbid: 12102914-0542-0000-0000-00000368FA23 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 28 Oct 2012 14:10:14 +0100 Ingo Molnar wrote: > > There's a related problem on s390: other THP implementations > have pmd_mknotpresent() while s390 not, resulting in: > > mm/huge_memory.c:1543:2: error: implicit declaration of function 'pmd_mknotpresent' > > The (untested!) patch below adds the s390 version of this > method. > > Gerald, Martin, did I get the S390 details right? The upstream thp patches for s390 fixed that by adding pmdp_invalidate() and replacing the pmd_mknotpresent() in mm/huge_memory.c, see git commit 46dcde73. The pmdp_invalidate() is already included linux-next, so it should be ok to just change mm/huge_memory.c similar to upstream: diff --git a/mm/huge_memory.c b/mm/huge_memory.c index f1c2679..842b6df 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -1537,8 +1537,7 @@ static int __split_huge_page_map(struct page *page, * complete. The ptl also protects against concurrent faults due to * making the pmd not-present. */ - set_pmd_at(mm, address, pmd, pmd_mknotpresent(*pmd)); - flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE); + pmdp_invalidate(vma, address, pmd); pmd_populate(mm, pmd, pgtable); ret = 1; With this, s390 does not need a pmd_mknotpresent(), and using set_pmd_at(..., pmd_mknotpresent()) would be wrong on s390 anyway because we need a flushing operation to change a valid pmd. > > Thanks, > > Ingo > > Signed-off-by: Ingo Molnar > --- > diff --git a/arch/s390/include/asm/pgtable.h b/arch/s390/include/asm/pgtable.h > index 098fc5a..b820ff1 100644 > --- a/arch/s390/include/asm/pgtable.h > +++ b/arch/s390/include/asm/pgtable.h > @@ -1310,6 +1310,12 @@ static inline pmd_t pmd_mkyoung(pmd_t pmd) > return pmd; > } > > +static inline pmd_t pmd_mknotpresent(pmd_t pmd) > +{ > + pmd_val(pmd) &= ~_SEGMENT_ENTRY_ORIGIN; > + return pmd; > +} > + > #define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG > static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma, > unsigned long address, pmd_t *pmdp) >