Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp1151062imm; Fri, 22 Jun 2018 11:10:12 -0700 (PDT) X-Google-Smtp-Source: ADUXVKK/qROplUkGgJEdJkX3Nh2Imn6d61EBZKmoOhitEjy/FWlji3j5R8IVRIAs/6XvTszJzduY X-Received: by 2002:a62:e816:: with SMTP id c22-v6mr2821847pfi.124.1529691012153; Fri, 22 Jun 2018 11:10:12 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1529691012; cv=none; d=google.com; s=arc-20160816; b=QGvcOTzsHs4FnDrQIugyT1TZcfd+udUf/hrlsGd2+wCKP5a+wwkhQVJu6Wj23CMjnW smBfchKcnQ9kYdWfYjl2luT3l3AIaAMwXNwfdZa3hemEWlS/QaxOHBrgWSBxJyzg772m nFQbhAqttrNgHbt+tilPX6g6NAK+mbq1FOy0Mb/R+MnaKeYMtyvMZuQJ69V52BJgIzDY 2F5imGLM4hpLfF66GNbMfyULFKHMMPFFCqNHHbW5abEkpatl46NxnVE1b4Y3jR7C13nx 6T/jS+JPYqlxduADiipcO8jfBnWjcwqVaUA580OwpeY33W+88yvxRJpinYrOO4DwNxZp sAYA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:in-reply-to :subject:cc:to:from:date:arc-authentication-results; bh=VYSwGITFXq/UPpXBt4OvR9WFgyEK01OsGh+bFbVYfYY=; b=m3m3gV5s5dJXeV5Gp9Tn8qX3ucATc+vht2Dshls2lHWijlEXpQw+OnVof1v1snkykz 4R/5baDCvPfGS/JWqX5WIXR50mwepeGKBHkpNndOiUWM2drV9DhKRZEWolLi6NEgTUV4 E13onipoZPtIVLEedupHFcqttYgq2YLFTIRv3LBn32gCS8oZUqv5PDGuf2KWiN41cPFA DPKiAU7Mo22cEUU8IwUrCD0M2d8cQLM4a0+cGEYoW+RUPb6DruEbPX+bvTz4+welqLy3 mEWviVUU5ex5AwAYZFz399Xo2apxRt/o/32H3mfCEDlWQVf0t47/djh6wC3B560OD/I9 PNqw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f8-v6si8049246plt.35.2018.06.22.11.09.56; Fri, 22 Jun 2018 11:10:12 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934019AbeFVSJG (ORCPT + 99 others); Fri, 22 Jun 2018 14:09:06 -0400 Received: from iolanthe.rowland.org ([192.131.102.54]:35710 "HELO iolanthe.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S932968AbeFVSJF (ORCPT ); Fri, 22 Jun 2018 14:09:05 -0400 Received: (qmail 4137 invoked by uid 2102); 22 Jun 2018 14:09:04 -0400 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Jun 2018 14:09:04 -0400 Date: Fri, 22 Jun 2018 14:09:04 -0400 (EDT) From: Alan Stern X-X-Sender: stern@iolanthe.rowland.org To: Will Deacon cc: LKMM Maintainers -- Akira Yokosawa , Andrea Parri , Boqun Feng , David Howells , Jade Alglave , Luc Maranget , Nicholas Piggin , "Paul E. McKenney" , Peter Zijlstra , Kernel development list Subject: Re: [PATCH 2/2] tools/memory-model: Add write ordering by release-acquire and by locks In-Reply-To: <20180622080928.GB7601@arm.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 22 Jun 2018, Will Deacon wrote: > Hi Alan, > > On Thu, Jun 21, 2018 at 01:27:12PM -0400, Alan Stern wrote: > > More than one kernel developer has expressed the opinion that the LKMM > > should enforce ordering of writes by release-acquire chains and by > > locking. In other words, given the following code: > > > > WRITE_ONCE(x, 1); > > spin_unlock(&s): > > spin_lock(&s); > > WRITE_ONCE(y, 1); > > > > or the following: > > > > smp_store_release(&x, 1); > > r1 = smp_load_acquire(&x); // r1 = 1 > > WRITE_ONCE(y, 1); > > > > the stores to x and y should be propagated in order to all other CPUs, > > even though those other CPUs might not access the lock s or be part of > > the release-acquire chain. In terms of the memory model, this means > > that rel-rf-acq-po should be part of the cumul-fence relation. > > > > All the architectures supported by the Linux kernel (including RISC-V) > > do behave this way, albeit for varying reasons. Therefore this patch > > changes the model in accordance with the developers' wishes. > > Interesting... > > I think the second example would preclude us using LDAPR for load-acquire, What are the semantics of LDAPR? That instruction isn't included in my year-old copy of the ARMv8.1 manual; the closest it comes is LDAR and LDAXP. > so I'm surprised that RISC-V is ok with this. For example, the first test > below is allowed on arm64. Does ARMv8 use LDAPR for smp_load_aquire()? If it doesn't, this is a moot point. > I also think this would break if we used DMB LD to implement load-acquire > (second test below). Same question. > So I'm not a big fan of this change, and I'm surprised this works on all > architectures. What's the justification? For ARMv8, I've been going by something you wrote in an earlier email to the effect that store-release and load-acquire are fully ordered, and therefore a release can never be forwarded to an acquire. Is that still true? But evidently it only justifies patch 1 in this series, not patch 2. For RISC-V, I've been going by Andrea's and Luc's comments. > > Reading back some of the old threads [1], it seems the direct > > translation of the first into acquire-release would be: > > > > WRITE_ONCE(x, 1); > > smp_store_release(&s, 1); > > r1 = smp_load_acquire(&s); > > WRITE_ONCE(y, 1); > > > > Which is I think easier to make happen than the second example you give. > > It's easier, but it will still break on architectures with native support > for RCpc acquire/release. Again, do we want the kernel to support that? For that matter, what would happen if someone were to try using RCpc semantics for lock/unlock? Or to put it another way, why do you contemplate the possibility of RCpc acquire/release but not RCpc lock/unlock? > Could we drop the acquire/release stuff from the patch and limit this change > to locking instead? The LKMM uses the same CAT code for acquire/release and lock/unlock. (In essence, it considers a lock to be an acquire and an unlock to be a release; everything else follows from that.) Treating one differently from the other in these tests would require some significant changes. It wouldn't be easy. Alan