Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1376981 > unrolled thread

[PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()

Started by"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
First post2016-04-12 18:00 +0200
Last post2016-04-13 16:20 +0200
Articles 4 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire() "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2016-04-12 18:00 +0200
    [tip:locking/core] locking/Documentation: Mention  smp_cond_acquire() tip-bot for Davidlohr Bueso <tipbot@zytor.com> - 2016-04-13 09:40 +0200
    Re: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention  smp_cond_acquire() Peter Zijlstra <peterz@infradead.org> - 2016-04-13 15:00 +0200
      Re: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention  smp_cond_acquire() "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2016-04-13 16:20 +0200

#1376981 — [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()

From"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Date2016-04-12 18:00 +0200
Subject[PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()
Message-ID<rn8Tp-1ma-45@gated-at.bofh.it>
From: Davidlohr Bueso <dave@stgolabs.net>

... do this next to smp_load_acquire when first mentioning
ACQUIRE. While this call is briefly explained and ctrl
dependencies are mentioned later, it does not hurt the reader.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
 Documentation/memory-barriers.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt
index 7133626a61d0..a9454b1c73bd 100644
--- a/Documentation/memory-barriers.txt
+++ b/Documentation/memory-barriers.txt
@@ -431,8 +431,9 @@ And a couple of implicit varieties:
      This acts as a one-way permeable barrier.  It guarantees that all memory
      operations after the ACQUIRE operation will appear to happen after the
      ACQUIRE operation with respect to the other components of the system.
-     ACQUIRE operations include LOCK operations and smp_load_acquire()
-     operations.
+     ACQUIRE operations include LOCK operations and both smp_load_acquire()
+     and smp_cond_acquire() operations. The later builds the necessary ACQUIRE
+     semantics from relying on a control dependency and smp_rmb().
 
      Memory operations that occur before an ACQUIRE operation may appear to
      happen after it completes.
-- 
2.5.2

[toc] | [next] | [standalone]


#1377607 — [tip:locking/core] locking/Documentation: Mention smp_cond_acquire()

Fromtip-bot for Davidlohr Bueso <tipbot@zytor.com>
Date2016-04-13 09:40 +0200
Subject[tip:locking/core] locking/Documentation: Mention smp_cond_acquire()
Message-ID<rnnz3-5ZP-1@gated-at.bofh.it>
In reply to#1376981
Commit-ID:  787df6383caa1338a4f6640d71917bc2d8c068b1
Gitweb:     http://git.kernel.org/tip/787df6383caa1338a4f6640d71917bc2d8c068b1
Author:     Davidlohr Bueso <dave@stgolabs.net>
AuthorDate: Tue, 12 Apr 2016 08:52:55 -0700
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 13 Apr 2016 08:52:23 +0200

locking/Documentation: Mention smp_cond_acquire()

... do this next to smp_load_acquire() when first mentioning
ACQUIRE. While this call is briefly explained and control
dependencies are mentioned later, it does not hurt the reader.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: bobby.prani@gmail.com
Cc: dhowells@redhat.com
Cc: dipankar@in.ibm.com
Cc: dvhart@linux.intel.com
Cc: edumazet@google.com
Cc: fweisbec@gmail.com
Cc: jiangshanlai@gmail.com
Cc: josh@joshtriplett.org
Cc: mathieu.desnoyers@efficios.com
Cc: oleg@redhat.com
Cc: rostedt@goodmis.org
Link: http://lkml.kernel.org/r/1460476375-27803-7-git-send-email-paulmck@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 Documentation/memory-barriers.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt
index 7133626..a9454b1 100644
--- a/Documentation/memory-barriers.txt
+++ b/Documentation/memory-barriers.txt
@@ -431,8 +431,9 @@ And a couple of implicit varieties:
      This acts as a one-way permeable barrier.  It guarantees that all memory
      operations after the ACQUIRE operation will appear to happen after the
      ACQUIRE operation with respect to the other components of the system.
-     ACQUIRE operations include LOCK operations and smp_load_acquire()
-     operations.
+     ACQUIRE operations include LOCK operations and both smp_load_acquire()
+     and smp_cond_acquire() operations. The later builds the necessary ACQUIRE
+     semantics from relying on a control dependency and smp_rmb().
 
      Memory operations that occur before an ACQUIRE operation may appear to
      happen after it completes.

[toc] | [prev] | [next] | [standalone]


#1377904 — Re: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()

FromPeter Zijlstra <peterz@infradead.org>
Date2016-04-13 15:00 +0200
SubjectRe: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()
Message-ID<rnsyK-1lV-19@gated-at.bofh.it>
In reply to#1376981
On Tue, Apr 12, 2016 at 08:52:55AM -0700, Paul E. McKenney wrote:
> From: Davidlohr Bueso <dave@stgolabs.net>
> 
> ... do this next to smp_load_acquire when first mentioning
> ACQUIRE. While this call is briefly explained and ctrl
> dependencies are mentioned later, it does not hurt the reader.

Ha! just when I have a patch set in RFC to change the whole thing about
:-)

lkml.kernel.org/r/20160404122250.340636238@infradead.org

[toc] | [prev] | [next] | [standalone]


#1377980 — Re: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()

From"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Date2016-04-13 16:20 +0200
SubjectRe: [PATCH memory-barriers.txt 7/7] Documentation,barriers: Mention smp_cond_acquire()
Message-ID<rntO9-2uP-13@gated-at.bofh.it>
In reply to#1377904
On Wed, Apr 13, 2016 at 02:53:10PM +0200, Peter Zijlstra wrote:
> On Tue, Apr 12, 2016 at 08:52:55AM -0700, Paul E. McKenney wrote:
> > From: Davidlohr Bueso <dave@stgolabs.net>
> > 
> > ... do this next to smp_load_acquire when first mentioning
> > ACQUIRE. While this call is briefly explained and ctrl
> > dependencies are mentioned later, it does not hurt the reader.
> 
> Ha! just when I have a patch set in RFC to change the whole thing about
> :-)
> 
> lkml.kernel.org/r/20160404122250.340636238@infradead.org

Heh!  I was talking to a bunch of formal-verification researchers last
week, and the fact that requirements can change over time did not make
them feel comfortable.  ;-)

							Thanx, Paul

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web