Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1424247AbdD3FFq (ORCPT ); Sun, 30 Apr 2017 01:05:46 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:40390 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1164708AbdD3FFi (ORCPT ); Sun, 30 Apr 2017 01:05:38 -0400 Date: Sat, 29 Apr 2017 22:05:29 -0700 From: Matthew Wilcox To: Laurent Dufour Cc: paulmck@linux.vnet.ibm.com, peterz@infradead.org, akpm@linux-foundation.org, kirill@shutemov.name, ak@linux.intel.com, mhocko@kernel.org, dave@stgolabs.net, jack@suse.cz, linux-kernel@vger.kernel.org, linux-mm@kvack.org, haren@linux.vnet.ibm.com, khandual@linux.vnet.ibm.com, npiggin@gmail.com, bsingharora@gmail.com Subject: Re: [RFC v3 05/17] RCU free VMAs Message-ID: <20170430050529.GH27790@bombadil.infradead.org> References: <1493308376-23851-1-git-send-email-ldufour@linux.vnet.ibm.com> <1493308376-23851-6-git-send-email-ldufour@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1493308376-23851-6-git-send-email-ldufour@linux.vnet.ibm.com> User-Agent: Mutt/1.8.0 (2017-02-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 582 Lines: 18 On Thu, Apr 27, 2017 at 05:52:44PM +0200, Laurent Dufour wrote: > +static inline bool vma_is_dead(struct vm_area_struct *vma, unsigned int sequence) > +{ > + int ret = RB_EMPTY_NODE(&vma->vm_rb); > + unsigned seq = ACCESS_ONCE(vma->vm_sequence.sequence); > + > + /* > + * Matches both the wmb in write_seqlock_{begin,end}() and > + * the wmb in vma_rb_erase(). > + */ > + smp_rmb(); > + > + return ret || seq != sequence; > +} Hang on, this isn't vma_is_dead(). This is vma_has_changed() (possibly from live to dead, but also possibly grown or shrunk; see your earlier patch).