From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Gleixner Subject: Re: [PATCH for 4.16 04/10] membarrier: provide SHARED_EXPEDITED command (v2) Date: Tue, 16 Jan 2018 20:04:18 +0100 (CET) Message-ID: References: <20180115191104.12437-1-mathieu.desnoyers@efficios.com> <20180115191104.12437-5-mathieu.desnoyers@efficios.com> <1577189631.3966.1516129345161.JavaMail.zimbra@efficios.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: In-Reply-To: <1577189631.3966.1516129345161.JavaMail.zimbra-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Mathieu Desnoyers Cc: Ingo Molnar , Peter Zijlstra , linux-kernel , linux-api , Andy Lutomirski , "Paul E. McKenney" , Boqun Feng , Andrew Hunter , maged michael , Avi Kivity , Benjamin Herrenschmidt , Paul Mackerras , Michael Ellerman , Dave Watson , "H. Peter Anvin" , Andrea Parri , "Russell King, ARM Linux" , Greg Hackmann , Will Deacon , David List-Id: linux-api@vger.kernel.org On Tue, 16 Jan 2018, Mathieu Desnoyers wrote: > ----- On Jan 16, 2018, at 1:20 PM, Thomas Gleixner tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org wrote: > > And I really have to ask whether this should be named _GLOBAL_ instead of > > _SHARED_. > > > > Hmm? > > I agree with you that this behavior fits better a "global" definition > than a "shared" one, especially given that it does not target a specific > shared memory mapping. The main issue I have is due to the pre-existing > MEMBARRIER_CMD_SHARED introduced in Linux 4.3. That one should also have > been called "MEMBARRIER_CMD_GLOBAL" based on the current line of thoughts. > > Do you envision a way to transition forward to a new "MEMBARRIER_CMD_GLOBAL" for > the currently existing MEMBARRIER_CMD_SHARED ? > > Perhaps with a duplicated enum entry ? > > enum membarrier_cmd { > MEMBARRIER_CMD_QUERY = 0, > MEMBARRIER_CMD_SHARED = (1 << 0), /* use MEMBARRIER_CMD_GLOBAL instead */ > MEMBARRIER_CMD_GLOBAL = (1 << 0), That should work. Though I doubt that you ever can get rid of CMD_SHARED, but at least the code is clearer that way. Thanks, tglx