seqlock: Remove now-redundant smp_read_barrier_depends()
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 9 Oct 2017 18:00:32 +0000 (11:00 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 4 Dec 2017 18:52:54 +0000 (10:52 -0800)
READ_ONCE() now implies smp_read_barrier_depends(), so this patch
removes the now-redundant smp_read_barrier_depends() from
raw_read_seqcount_latch().

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>
include/linux/seqlock.h

index f189a8a..bcf4cf2 100644 (file)
@@ -278,9 +278,8 @@ static inline void raw_write_seqcount_barrier(seqcount_t *s)
 
 static inline int raw_read_seqcount_latch(seqcount_t *s)
 {
-       int seq = READ_ONCE(s->sequence);
        /* Pairs with the first smp_wmb() in raw_write_seqcount_latch() */
-       smp_read_barrier_depends();
+       int seq = READ_ONCE(s->sequence); /* ^^^ */
        return seq;
 }