blob: aa897c3f2e92c6db8399121a7b0d8cba84d64c4d [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. */
35};
36
37/* Definition for rcupdate control block. */
Paul E. McKenney709fdce2018-07-03 10:44:44 -070038static struct rcu_ctrlblk rcu_ctrlblk = {
39 .donetail = &rcu_ctrlblk.rcucblist,
40 .curtail = &rcu_ctrlblk.rcucblist,
Paul E. McKenney6d481522017-05-17 10:54:29 -070041};
42
Paul E. McKenney709fdce2018-07-03 10:44:44 -070043void rcu_barrier(void)
Ingo Molnarf9411eb2017-02-06 09:50:49 +010044{
Paul E. McKenney709fdce2018-07-03 10:44:44 -070045 wait_rcu_gp(call_rcu);
Ingo Molnarf9411eb2017-02-06 09:50:49 +010046}
Paul E. McKenney709fdce2018-07-03 10:44:44 -070047EXPORT_SYMBOL(rcu_barrier);
Ingo Molnarf9411eb2017-02-06 09:50:49 +010048
Paul E. McKenney65cfe352018-07-01 07:40:52 -070049/* Record an rcu quiescent state. */
Paul E. McKenney709fdce2018-07-03 10:44:44 -070050void rcu_qs(void)
Ingo Molnarf9411eb2017-02-06 09:50:49 +010051{
Eric Dumazetb554d7d2011-04-28 07:23:45 +020052 unsigned long flags;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070053
Eric Dumazetb554d7d2011-04-28 07:23:45 +020054 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -070055 if (rcu_ctrlblk.donetail != rcu_ctrlblk.curtail) {
56 rcu_ctrlblk.donetail = rcu_ctrlblk.curtail;
Cyrill Gorcunov18d7e402019-01-24 21:14:37 +030057 raise_softirq_irqoff(RCU_SOFTIRQ);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070058 }
Eric Dumazetb554d7d2011-04-28 07:23:45 +020059 local_irq_restore(flags);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070060}
61
62/*
63 * Check to see if the scheduling-clock interrupt came from an extended
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -070064 * quiescent state, and, if so, tell RCU about it. This function must
65 * be called from hardirq context. It is normally called from the
66 * scheduling-clock interrupt.
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070067 */
Paul E. McKenneyc98cac62018-11-21 11:35:03 -080068void rcu_sched_clock_irq(int user)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070069{
Paul E. McKenneyc5bacd92018-07-20 14:18:23 -070070 if (user) {
Paul E. McKenney709fdce2018-07-03 10:44:44 -070071 rcu_qs();
Paul E. McKenneyc5bacd92018-07-20 14:18:23 -070072 } else if (rcu_ctrlblk.donetail != rcu_ctrlblk.curtail) {
73 set_tsk_need_resched(current);
74 set_preempt_need_resched();
75 }
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070076}
77
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -040078/*
79 * Reclaim the specified callback, either by invoking it for non-kfree cases or
80 * freeing it directly (for kfree). Return true if kfreeing, false otherwise.
81 */
82static inline bool rcu_reclaim_tiny(struct rcu_head *head)
83{
84 rcu_callback_t f;
85 unsigned long offset = (unsigned long)head->func;
86
87 rcu_lock_acquire(&rcu_callback_map);
Uladzislau Rezki (Sony)c408b212020-05-25 23:47:55 +020088 if (__is_kvfree_rcu_offset(offset)) {
89 trace_rcu_invoke_kvfree_callback("", head, offset);
Uladzislau Rezki (Sony)64d1d062020-05-25 23:47:54 +020090 kvfree((void *)head - offset);
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -040091 rcu_lock_release(&rcu_callback_map);
92 return true;
93 }
94
95 trace_rcu_invoke_callback("", head);
96 f = head->func;
97 WRITE_ONCE(head->func, (rcu_callback_t)0L);
98 f(head);
99 rcu_lock_release(&rcu_callback_map);
100 return false;
101}
102
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700103/* Invoke the RCU callbacks whose grace period has elapsed. */
104static __latent_entropy void rcu_process_callbacks(struct softirq_action *unused)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700105{
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700106 struct rcu_head *next, *list;
Ingo Molnar4ce5b902009-10-26 07:55:55 +0100107 unsigned long flags;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700108
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700109 /* Move the ready-to-invoke callbacks to a local list. */
110 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700111 if (rcu_ctrlblk.donetail == &rcu_ctrlblk.rcucblist) {
Paul E. McKenney6e91f8c2015-05-11 11:13:05 -0700112 /* No callbacks ready, so just leave. */
113 local_irq_restore(flags);
114 return;
115 }
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700116 list = rcu_ctrlblk.rcucblist;
117 rcu_ctrlblk.rcucblist = *rcu_ctrlblk.donetail;
118 *rcu_ctrlblk.donetail = NULL;
119 if (rcu_ctrlblk.curtail == rcu_ctrlblk.donetail)
120 rcu_ctrlblk.curtail = &rcu_ctrlblk.rcucblist;
121 rcu_ctrlblk.donetail = &rcu_ctrlblk.rcucblist;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700122 local_irq_restore(flags);
123
124 /* Invoke the callbacks on the local list. */
125 while (list) {
126 next = list->next;
127 prefetch(next);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400128 debug_rcu_head_unqueue(list);
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700129 local_bh_disable();
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -0400130 rcu_reclaim_tiny(list);
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700131 local_bh_enable();
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700132 list = next;
133 }
134}
135
Paul E. McKenneyb2c07102010-09-09 13:40:39 -0700136/*
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700137 * Wait for a grace period to elapse. But it is illegal to invoke
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700138 * synchronize_rcu() from within an RCU read-side critical section.
139 * Therefore, any legal call to synchronize_rcu() is a quiescent
140 * state, and so on a UP system, synchronize_rcu() need do nothing.
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700141 * (But Lai Jiangshan points out the benefits of doing might_sleep()
142 * to reduce latency.)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700143 *
144 * Cool, huh? (Due to Josh Triplett.)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700145 */
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700146void synchronize_rcu(void)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700147{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700148 RCU_LOCKDEP_WARN(lock_is_held(&rcu_bh_lock_map) ||
149 lock_is_held(&rcu_lock_map) ||
150 lock_is_held(&rcu_sched_lock_map),
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700151 "Illegal synchronize_rcu() in RCU read-side critical section");
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700152}
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700153EXPORT_SYMBOL_GPL(synchronize_rcu);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700154
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700155/*
Paul E. McKenney679d3f32018-07-07 18:12:26 -0700156 * Post an RCU callback to be invoked after the end of an RCU grace
Paul E. McKenney65cfe352018-07-01 07:40:52 -0700157 * period. But since we have but one CPU, that would be after any
158 * quiescent state.
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700159 */
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700160void call_rcu(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700161{
162 unsigned long flags;
163
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400164 debug_rcu_head_queue(head);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700165 head->func = func;
166 head->next = NULL;
Ingo Molnar4ce5b902009-10-26 07:55:55 +0100167
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700168 local_irq_save(flags);
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700169 *rcu_ctrlblk.curtail = head;
170 rcu_ctrlblk.curtail = &head->next;
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700171 local_irq_restore(flags);
Lai Jiangshan5f6130f2014-12-09 17:53:34 +0800172
173 if (unlikely(is_idle_task(current))) {
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700174 /* force scheduling for rcu_qs() */
Lai Jiangshan5f6130f2014-12-09 17:53:34 +0800175 resched_cpu(0);
176 }
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700177}
Paul E. McKenney709fdce2018-07-03 10:44:44 -0700178EXPORT_SYMBOL_GPL(call_rcu);
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700179
Pranith Kumaraa23c6fbc2014-09-19 11:32:29 -0400180void __init rcu_init(void)
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700181{
182 open_softirq(RCU_SOFTIRQ, rcu_process_callbacks);
Pranith Kumaraa23c6fbc2014-09-19 11:32:29 -0400183 rcu_early_boot_tests();
Paul E. McKenneye0fcba92018-08-14 08:45:54 -0700184 srcu_init();
Paul E. McKenney9dc5ad32013-03-27 10:11:15 -0700185}