Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751927AbdFUMET (ORCPT ); Wed, 21 Jun 2017 08:04:19 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:33356 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751114AbdFUMEQ (ORCPT ); Wed, 21 Jun 2017 08:04:16 -0400 Date: Wed, 21 Jun 2017 15:04:12 +0300 From: "Kirill A. Shutemov" To: Catalin Marinas Cc: "Kirill A. Shutemov" , Andrew Morton , Vlastimil Babka , Vineet Gupta , Russell King , Will Deacon , Ralf Baechle , "David S. Miller" , "Aneesh Kumar K . V" , Martin Schwidefsky , Heiko Carstens , Andrea Arcangeli , linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Ingo Molnar , "H . Peter Anvin" , Thomas Gleixner Subject: Re: [PATCHv2 1/3] x86/mm: Provide pmdp_establish() helper Message-ID: <20170621120412.cdmg76jy2zby56cx@node.shutemov.name> References: <20170615145224.66200-1-kirill.shutemov@linux.intel.com> <20170615145224.66200-2-kirill.shutemov@linux.intel.com> <20170619152228.GE3024@e104818-lin.cambridge.arm.com> <20170619160005.wgj4nymtj2nntfll@node.shutemov.name> <20170619170911.GF3024@e104818-lin.cambridge.arm.com> <20170619215210.2crwjou3sfdcj73d@node.shutemov.name> <20170620155438.GC21383@e104818-lin.cambridge.arm.com> <20170621095303.q5fqt5a3ao5smko6@node.shutemov.name> <20170621112702.GC10220@e104818-lin.cambridge.arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170621112702.GC10220@e104818-lin.cambridge.arm.com> User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 988 Lines: 25 On Wed, Jun 21, 2017 at 12:27:02PM +0100, Catalin Marinas wrote: > On Wed, Jun 21, 2017 at 12:53:03PM +0300, Kirill A. Shutemov wrote: > > > > > > > On Thu, Jun 15, 2017 at 05:52:22PM +0300, Kirill A. Shutemov wrote: > > > > > > > > We need an atomic way to setup pmd page table entry, avoiding races with > > > > > > > > CPU setting dirty/accessed bits. This is required to implement > > > > > > > > pmdp_invalidate() that doesn't loose these bits. > [...] > > Any chance you could help me with arm too? > > On arm (ARMv7 with LPAE) we don't have hardware updates of the > access/dirty bits, so a generic implementation would suffice. I didn't > find one in your patches, so here's an untested version: > > static inline pmd_t pmdp_establish(struct mm_struct *mm, unsigned long address, > pmd_t *pmdp, pmd_t pmd) > { > pmd_t old_pmd = *pmdp; > set_pmd_at(mm, address, pmdp, pmd); > return old_pmd; > } Thanks, I'll integrate this into the patchset. -- Kirill A. Shutemov