summaryrefslogtreecommitdiffstats
path: root/kernel/rcu/rcu_segcblist.c
diff options
context:
space:
mode:
authorJoel Fernandes (Google) <joel@joelfernandes.org>2020-10-14 18:21:53 -0400
committerPaul E. McKenney <paulmck@kernel.org>2021-01-06 16:24:19 -0800
commit68804cf1c905ce227e4e1d0bc252c216811c59fd (patch)
treefa911f459c48d65bd374da8d18e539bf15e60647 /kernel/rcu/rcu_segcblist.c
parentae5c2341ed3987bd434ed495bd4f3d8b2bc3e623 (diff)
downloadlinux-stable-68804cf1c905ce227e4e1d0bc252c216811c59fd.tar.gz
linux-stable-68804cf1c905ce227e4e1d0bc252c216811c59fd.tar.bz2
linux-stable-68804cf1c905ce227e4e1d0bc252c216811c59fd.zip
rcu/tree: segcblist: Remove redundant smp_mb()s
The full memory barriers in rcu_segcblist_enqueue() and in rcu_do_batch() are not needed because rcu_segcblist_add_len(), and thus also rcu_segcblist_inc_len(), already includes a memory barrier *before* and *after* the length of the list is updated. This commit therefore removes these redundant smp_mb() invocations. Reviewed-by: Frederic Weisbecker <frederic@kernel.org> Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'kernel/rcu/rcu_segcblist.c')
-rw-r--r--kernel/rcu/rcu_segcblist.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/rcu/rcu_segcblist.c b/kernel/rcu/rcu_segcblist.c
index 777780447887..1e80a0a9036a 100644
--- a/kernel/rcu/rcu_segcblist.c
+++ b/kernel/rcu/rcu_segcblist.c
@@ -327,7 +327,6 @@ void rcu_segcblist_enqueue(struct rcu_segcblist *rsclp,
struct rcu_head *rhp)
{
rcu_segcblist_inc_len(rsclp);
- smp_mb(); /* Ensure counts are updated before callback is enqueued. */
rcu_segcblist_inc_seglen(rsclp, RCU_NEXT_TAIL);
rhp->next = NULL;
WRITE_ONCE(*rsclp->tails[RCU_NEXT_TAIL], rhp);