blob: 340b3f8b090d41e8ff128960c2fb2a6deeca6b43 [file] [log] [blame]
Paul E. McKenney00de9d72019-01-17 10:21:12 -08001// SPDX-License-Identifier: GPL-2.0+
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -07002/*
3 * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition.
4 *
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -07005 * Copyright IBM Corporation, 2008
6 *
Paul E. McKenney00de9d72019-01-17 10:21:12 -08007 * Author: Paul E. McKenney <paulmck@linux.ibm.com>
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -07008 *
9 * For detailed explanation of Read-Copy Update mechanism see -
Ingo Molnar4ce5b902009-10-26 07:55:55 +010010 * Documentation/RCU
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070011 */
Ingo Molnar4ce5b902009-10-26 07:55:55 +010012#include <linux/completion.h>
13#include <linux/interrupt.h>
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070014#include <linux/notifier.h>
Ingo Molnarf9411eb2017-02-06 09:50:49 +010015#include <linux/rcupdate_wait.h>
Ingo Molnar4ce5b902009-10-26 07:55:55 +010016#include <linux/kernel.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040017#include <linux/export.h>
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070018#include <linux/mutex.h>
Ingo Molnar4ce5b902009-10-26 07:55:55 +010019#include <linux/sched.h>
20#include <linux/types.h>
21#include <linux/init.h>
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070022#include <linux/time.h>
Ingo Molnar4ce5b902009-10-26 07:55:55 +010023#include <linux/cpu.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070024#include <linux/prefetch.h>
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -040025#include <linux/slab.h>
Uladzislau Rezki (Sony)64d1d062020-05-25 23:47:54 +020026#include <linux/mm.h>
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070027
Paul E. McKenney29c00b42011-06-17 15:53:19 -070028#include "rcu.h"
29
Paul E. McKenney6d481522017-05-17 10:54:29 -070030/* Global control variables for rcupdate callback mechanism. */
31struct rcu_ctrlblk {
32 struct rcu_head *rcucblist; /* List of pending callbacks (CBs). */
33 struct rcu_head **donetail; /* ->next pointer of last "done" CB. */
34 struct rcu_head **curtail; /* ->next pointer of last CB. */
Paul E. McKenney0909fc22021-02-25 17:36:06 -080035 unsigned long gp_seq; /* Grace-period counter. */
Paul E. McKenney6d481522017-05-17 10:54:29 -070036};
37
38/* Definition for rcupdate control block. */
Paul E. McKenney709fdce2018-07-03 10:44:44 -070039static struct rcu_ctrlblk rcu_ctrlblk = {
40 .donetail = &rcu_ctrlblk.rcucblist,
41 .curtail = &rcu_ctrlblk.rcucblist,
Paul E. McKenney0909fc22021-02-25 17:36:06 -080042 .gp_seq = 0 - 300UL,
Paul E. McKenney6d481522017-05-17 10:54:29 -070043};
44
Paul E. McKenney709fdce2018-07-03 10:44:44 -070045void rcu_barrier(void)
Ingo Molnarf9411eb2017-02-06 09:50:49 +010046{
Paul E. McKenney709fdce2018-07-03 10:44:44 -070047 wait_rcu_gp(call_rcu);
Ingo Molnarf9411eb2017-02-06 09:50:49 +010048}
Paul E. McKenney709fdce2018-07-03 10:44:44 -070049EXPORT_SYMBOL(rcu_barrier);
Ingo Molnarf9411eb2017-02-06 09:50:49 +010050
Paul E. McKenney65cfe352018-07-01 07:40:52 -070051/* Record an rcu quiescent state. */
Paul E. McKenney709fdce2018-07-03 10:44:44 -070052void rcu_qs(void)
Ingo Molnarf9411eb2017-02-06 09:50:49 +010053{
Eric Dumazetb554d7d2011-04-28 07:23:45 +020054 unsigned long flags;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070055
Eric Dumazetb554d7d2011-04-28 07:23:45 +020056 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -070057 if (rcu_ctrlblk.donetail != rcu_ctrlblk.curtail) {
58 rcu_ctrlblk.donetail = rcu_ctrlblk.curtail;
Cyrill Gorcunov18d7e402019-01-24 21:14:37 +030059 raise_softirq_irqoff(RCU_SOFTIRQ);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070060 }
Paul E. McKenney0909fc22021-02-25 17:36:06 -080061 WRITE_ONCE(rcu_ctrlblk.gp_seq, rcu_ctrlblk.gp_seq + 1);
Eric Dumazetb554d7d2011-04-28 07:23:45 +020062 local_irq_restore(flags);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070063}
64
65/*
66 * Check to see if the scheduling-clock interrupt came from an extended
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -070067 * quiescent state, and, if so, tell RCU about it. This function must
68 * be called from hardirq context. It is normally called from the
69 * scheduling-clock interrupt.
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070070 */
Paul E. McKenneyc98cac62018-11-21 11:35:03 -080071void rcu_sched_clock_irq(int user)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070072{
Paul E. McKenneyc5bacd92018-07-20 14:18:23 -070073 if (user) {
Paul E. McKenney709fdce2018-07-03 10:44:44 -070074 rcu_qs();
Paul E. McKenneyc5bacd92018-07-20 14:18:23 -070075 } else if (rcu_ctrlblk.donetail != rcu_ctrlblk.curtail) {
76 set_tsk_need_resched(current);
77 set_preempt_need_resched();
78 }
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070079}
80
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -040081/*
82 * Reclaim the specified callback, either by invoking it for non-kfree cases or
83 * freeing it directly (for kfree). Return true if kfreeing, false otherwise.
84 */
85static inline bool rcu_reclaim_tiny(struct rcu_head *head)
86{
87 rcu_callback_t f;
88 unsigned long offset = (unsigned long)head->func;
89
90 rcu_lock_acquire(&rcu_callback_map);
Uladzislau Rezki (Sony)c408b212020-05-25 23:47:55 +020091 if (__is_kvfree_rcu_offset(offset)) {
92 trace_rcu_invoke_kvfree_callback("", head, offset);
Uladzislau Rezki (Sony)64d1d062020-05-25 23:47:54 +020093 kvfree((void *)head - offset);
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -040094 rcu_lock_release(&rcu_callback_map);
95 return true;
96 }
97
98 trace_rcu_invoke_callback("", head);
99 f = head->func;
100 WRITE_ONCE(head->func, (rcu_callback_t)0L);
101 f(head);
102 rcu_lock_release(&rcu_callback_map);
103 return false;
104}
105
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700106/* Invoke the RCU callbacks whose grace period has elapsed. */
107static __latent_entropy void rcu_process_callbacks(struct softirq_action *unused)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700108{
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700109 struct rcu_head *next, *list;
Ingo Molnar4ce5b902009-10-26 07:55:55 +0100110 unsigned long flags;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700111
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700112 /* Move the ready-to-invoke callbacks to a local list. */
113 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700114 if (rcu_ctrlblk.donetail == &rcu_ctrlblk.rcucblist) {
Paul E. McKenney6e91f8c2015-05-11 11:13:05 -0700115 /* No callbacks ready, so just leave. */
116 local_irq_restore(flags);
117 return;
118 }
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700119 list = rcu_ctrlblk.rcucblist;
120 rcu_ctrlblk.rcucblist = *rcu_ctrlblk.donetail;
121 *rcu_ctrlblk.donetail = NULL;
122 if (rcu_ctrlblk.curtail == rcu_ctrlblk.donetail)
123 rcu_ctrlblk.curtail = &rcu_ctrlblk.rcucblist;
124 rcu_ctrlblk.donetail = &rcu_ctrlblk.rcucblist;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700125 local_irq_restore(flags);
126
127 /* Invoke the callbacks on the local list. */
128 while (list) {
129 next = list->next;
130 prefetch(next);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400131 debug_rcu_head_unqueue(list);
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700132 local_bh_disable();
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -0400133 rcu_reclaim_tiny(list);
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700134 local_bh_enable();
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700135 list = next;
136 }
137}
138
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700139/*
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700140 * Wait for a grace period to elapse. But it is illegal to invoke
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700141 * synchronize_rcu() from within an RCU read-side critical section.
142 * Therefore, any legal call to synchronize_rcu() is a quiescent
143 * state, and so on a UP system, synchronize_rcu() need do nothing.
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700144 * (But Lai Jiangshan points out the benefits of doing might_sleep()
145 * to reduce latency.)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700146 *
147 * Cool, huh? (Due to Josh Triplett.)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700148 */
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700149void synchronize_rcu(void)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700150{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700151 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
152 lock_is_held(&rcu_lock_map) ||
153 lock_is_held(&rcu_sched_lock_map),
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700154 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700155}
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700156EXPORT_SYMBOL_GPL(synchronize_rcu);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700157
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700158/*
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700159 * Post an RCU callback to be invoked after the end of an RCU grace
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700160 * period. But since we have but one CPU, that would be after any
161 * quiescent state.
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700162 */
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700163void call_rcu(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700164{
165 unsigned long flags;
166
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400167 debug_rcu_head_queue(head);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700168 head->func = func;
169 head->next = NULL;
Ingo Molnar4ce5b902009-10-26 07:55:55 +0100170
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700171 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700172 *rcu_ctrlblk.curtail = head;
173 rcu_ctrlblk.curtail = &head->next;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700174 local_irq_restore(flags);
Lai Jiangshan5f6130f2014-12-09 17:53:34 +0800175
176 if (unlikely(is_idle_task(current))) {
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700177 /* force scheduling for rcu_qs() */
Lai Jiangshan5f6130f2014-12-09 17:53:34 +0800178 resched_cpu(0);
179 }
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700180}
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700181EXPORT_SYMBOL_GPL(call_rcu);
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700182
Paul E. McKenney0909fc22021-02-25 17:36:06 -0800183/*
184 * Return a grace-period-counter "cookie". For more information,
185 * see the Tree RCU header comment.
186 */
187unsigned long get_state_synchronize_rcu(void)
188{
189 return READ_ONCE(rcu_ctrlblk.gp_seq);
190}
191EXPORT_SYMBOL_GPL(get_state_synchronize_rcu);
192
193/*
194 * Return a grace-period-counter "cookie" and ensure that a future grace
195 * period completes. For more information, see the Tree RCU header comment.
196 */
197unsigned long start_poll_synchronize_rcu(void)
198{
199 unsigned long gp_seq = get_state_synchronize_rcu();
200
201 if (unlikely(is_idle_task(current))) {
202 /* force scheduling for rcu_qs() */
203 resched_cpu(0);
204 }
205 return gp_seq;
206}
207EXPORT_SYMBOL_GPL(start_poll_synchronize_rcu);
208
209/*
210 * Return true if the grace period corresponding to oldstate has completed
211 * and false otherwise. For more information, see the Tree RCU header
212 * comment.
213 */
214bool poll_state_synchronize_rcu(unsigned long oldstate)
215{
216 return READ_ONCE(rcu_ctrlblk.gp_seq) != oldstate;
217}
218EXPORT_SYMBOL_GPL(poll_state_synchronize_rcu);
219
Pranith Kumaraa23c6fbc2014-09-19 11:32:29 -0400220void __init rcu_init(void)
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700221{
222 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Pranith Kumaraa23c6fbc2014-09-19 11:32:29 -0400223 rcu_early_boot_tests();
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700224}