mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] rcu/segcblist: Use WRITE_ONCE() for rclp->len decrement
@ 2025-09-11  5:10 Kaushlendra Kumar
  2025-09-11 13:17 ` Paul E. McKenney
  2025-09-11 13:42 ` Markus Elfring
  0 siblings, 2 replies; 6+ messages in thread
From: Kaushlendra Kumar @ 2025-09-11  5:10 UTC (permalink / raw)
  To: dave, paulmck, josh, frederic, neeraj.upadhyay, rostedt
  Cc: linux-kernel, rcu, Kaushlendra Kumar

The rclp->len field is accessed concurrently by multiple contexts
in RCU operations. Using WRITE_ONCE() provides the necessary memory
ordering guarantees.

This change ensures that the callback list length is updated atomically
and provides consistent visibility across different CPU contexts,
maintaining the integrity of RCU callback list management.

Signed-off-by: Kaushlendra Kumar <kaushlendra.kumar@intel.com>
---
 kernel/rcu/rcu_segcblist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/rcu/rcu_segcblist.c b/kernel/rcu/rcu_segcblist.c
index 1693ea22ef1b..e10b36e9de54 100644
--- a/kernel/rcu/rcu_segcblist.c
+++ b/kernel/rcu/rcu_segcblist.c
@@ -71,7 +71,7 @@ struct rcu_head *rcu_cblist_dequeue(struct rcu_cblist *rclp)
 	rhp = rclp->head;
 	if (!rhp)
 		return NULL;
-	rclp->len--;
+	WRITE_ONCE(rclp->len, rclp->len - 1);
 	rclp->head = rhp->next;
 	if (!rclp->head)
 		rclp->tail = &rclp->head;
-- 
2.34.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-09-11 19:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-09-11  5:10 [PATCH] rcu/segcblist: Use WRITE_ONCE() for rclp->len decrement Kaushlendra Kumar
2025-09-11 13:17 ` Paul E. McKenney
2025-09-11 15:46   ` Kumar, Kaushlendra
2025-09-11 19:37     ` Paul E. McKenney
2025-09-11 13:42 ` Markus Elfring
2025-09-11 16:37   ` Kumar, Kaushlendra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®