From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753136AbcGFH4M (ORCPT ); Wed, 6 Jul 2016 03:56:12 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:39816 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751007AbcGFH4L (ORCPT ); Wed, 6 Jul 2016 03:56:11 -0400 Date: Wed, 6 Jul 2016 09:56:08 +0200 From: Peter Zijlstra To: Byungchul Park Cc: Boqun Feng , mingo@kernel.org, linux-kernel@vger.kernel.org, walken@google.com Subject: Re: [PATCH] lockdep: Add a document describing crossrelease feature Message-ID: <20160706075608.GE30921@twins.programming.kicks-ass.net> References: <1466398527-1122-1-git-send-email-byungchul.park@lge.com> <1467346538-1579-1-git-send-email-byungchul.park@lge.com> <20160701104521.GG30154@twins.programming.kicks-ass.net> <20160704064259.GX2279@X58A-UD3R> <20160706004943.GA20366@insomnia> <20160706021710.GA2279@X58A-UD3R> <20160706053328.GB2279@X58A-UD3R> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160706053328.GB2279@X58A-UD3R> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 06, 2016 at 02:33:29PM +0900, Byungchul Park wrote: > On Wed, Jul 06, 2016 at 11:17:10AM +0900, Byungchul Park wrote: > > > > lock(A) > > wait_for(B) > > ~~~~~~~~~~~~~~~~~~~~~~~~ <- serialized by atomic operation > > lock(A) > > unlock(A) > > wake(B) > > unlock(A) > > By the way, I have a question. Is there anyone who could answer it? > > I want to serialize between two context's lock operations, for example, > > context A context B > -------------- -------------- > lock A > lock B ... > lock C > atomic_inc_return > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <- serialization > atomic_read > lock D > ... lock E > lock F > > so that we can see these in the order like A -> B -> C -> D -> E -> F. > > atomic_inc_return() is used after lock C in context A, and atomic_read() > is used before lock D in context B. And I want to make it serialized when > the atomic_read() can see the increased value. > > Can I use smp_mb__after_atomic() just after atomic_read() No. atomic_set() and atomic_read() are not RmW operations. > or should I use > smp_mb()? I think anyway I have to choose one of them for that ordering. smp_load_acquire(), if that observes the increment it will ensure D comes after etc.. Also, atomic_read() _could_ be enough, if its part of a control dependency, because LOCK very much involves a store, so the load->store order provided by the control dependency will already order things.