| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Read-Copy Update mechanism for mutual exclusion (tree-based version) | 
 | 3 |  * Internal non-public definitions that provide either classic | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 4 |  * or preemptible semantics. | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 5 |  * | 
 | 6 |  * This program is free software; you can redistribute it and/or modify | 
 | 7 |  * it under the terms of the GNU General Public License as published by | 
 | 8 |  * the Free Software Foundation; either version 2 of the License, or | 
 | 9 |  * (at your option) any later version. | 
 | 10 |  * | 
 | 11 |  * This program is distributed in the hope that it will be useful, | 
 | 12 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 13 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 14 |  * GNU General Public License for more details. | 
 | 15 |  * | 
 | 16 |  * You should have received a copy of the GNU General Public License | 
 | 17 |  * along with this program; if not, write to the Free Software | 
 | 18 |  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 
 | 19 |  * | 
 | 20 |  * Copyright Red Hat, 2009 | 
 | 21 |  * Copyright IBM Corporation, 2009 | 
 | 22 |  * | 
 | 23 |  * Author: Ingo Molnar <mingo@elte.hu> | 
 | 24 |  *	   Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 
 | 25 |  */ | 
 | 26 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 27 | #include <linux/delay.h> | 
| Paul E. McKenney | b626c1b | 2012-06-11 17:39:43 -0700 | [diff] [blame] | 28 | #include <linux/oom.h> | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 29 | #include <linux/smpboot.h> | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 30 |  | 
| Mike Galbraith | 5b61b0b | 2011-08-19 11:39:11 -0700 | [diff] [blame] | 31 | #define RCU_KTHREAD_PRIO 1 | 
 | 32 |  | 
 | 33 | #ifdef CONFIG_RCU_BOOST | 
 | 34 | #define RCU_BOOST_PRIO CONFIG_RCU_BOOST_PRIO | 
 | 35 | #else | 
 | 36 | #define RCU_BOOST_PRIO RCU_KTHREAD_PRIO | 
 | 37 | #endif | 
 | 38 |  | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 39 | /* | 
 | 40 |  * Check the RCU kernel configuration parameters and print informative | 
 | 41 |  * messages about anything out of the ordinary.  If you like #ifdef, you | 
 | 42 |  * will love this function. | 
 | 43 |  */ | 
 | 44 | static void __init rcu_bootup_announce_oddness(void) | 
 | 45 | { | 
 | 46 | #ifdef CONFIG_RCU_TRACE | 
 | 47 | 	printk(KERN_INFO "\tRCU debugfs-based tracing is enabled.\n"); | 
 | 48 | #endif | 
 | 49 | #if (defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 64) || (!defined(CONFIG_64BIT) && CONFIG_RCU_FANOUT != 32) | 
 | 50 | 	printk(KERN_INFO "\tCONFIG_RCU_FANOUT set to non-default value of %d\n", | 
 | 51 | 	       CONFIG_RCU_FANOUT); | 
 | 52 | #endif | 
 | 53 | #ifdef CONFIG_RCU_FANOUT_EXACT | 
 | 54 | 	printk(KERN_INFO "\tHierarchical RCU autobalancing is disabled.\n"); | 
 | 55 | #endif | 
 | 56 | #ifdef CONFIG_RCU_FAST_NO_HZ | 
 | 57 | 	printk(KERN_INFO | 
 | 58 | 	       "\tRCU dyntick-idle grace-period acceleration is enabled.\n"); | 
 | 59 | #endif | 
 | 60 | #ifdef CONFIG_PROVE_RCU | 
 | 61 | 	printk(KERN_INFO "\tRCU lockdep checking is enabled.\n"); | 
 | 62 | #endif | 
 | 63 | #ifdef CONFIG_RCU_TORTURE_TEST_RUNNABLE | 
 | 64 | 	printk(KERN_INFO "\tRCU torture testing starts during boot.\n"); | 
 | 65 | #endif | 
| Paul E. McKenney | 81a294c | 2010-08-30 09:52:50 -0700 | [diff] [blame] | 66 | #if defined(CONFIG_TREE_PREEMPT_RCU) && !defined(CONFIG_RCU_CPU_STALL_VERBOSE) | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 67 | 	printk(KERN_INFO "\tDump stacks of tasks blocking RCU-preempt GP.\n"); | 
 | 68 | #endif | 
 | 69 | #if defined(CONFIG_RCU_CPU_STALL_INFO) | 
 | 70 | 	printk(KERN_INFO "\tAdditional per-CPU info printed with stalls.\n"); | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 71 | #endif | 
 | 72 | #if NUM_RCU_LVL_4 != 0 | 
| Paul E. McKenney | cc5df65 | 2012-06-15 18:16:00 -0700 | [diff] [blame] | 73 | 	printk(KERN_INFO "\tFour-level hierarchy is enabled.\n"); | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 74 | #endif | 
| Paul E. McKenney | f885b7f | 2012-04-23 15:52:53 -0700 | [diff] [blame] | 75 | 	if (rcu_fanout_leaf != CONFIG_RCU_FANOUT_LEAF) | 
 | 76 | 		printk(KERN_INFO "\tExperimental boot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf); | 
| Paul E. McKenney | cca6f39 | 2012-05-08 21:00:28 -0700 | [diff] [blame] | 77 | 	if (nr_cpu_ids != NR_CPUS) | 
 | 78 | 		printk(KERN_INFO "\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%d.\n", NR_CPUS, nr_cpu_ids); | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 79 | } | 
 | 80 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 81 | #ifdef CONFIG_TREE_PREEMPT_RCU | 
 | 82 |  | 
| Paul E. McKenney | 037b64e | 2012-05-28 23:26:01 -0700 | [diff] [blame] | 83 | struct rcu_state rcu_preempt_state = | 
 | 84 | 	RCU_STATE_INITIALIZER(rcu_preempt, call_rcu); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 85 | DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 86 | static struct rcu_state *rcu_state = &rcu_preempt_state; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 87 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 88 | static int rcu_preempted_readers_exp(struct rcu_node *rnp); | 
 | 89 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 90 | /* | 
 | 91 |  * Tell them what RCU they are running. | 
 | 92 |  */ | 
| Paul E. McKenney | 0e0fc1c | 2009-11-11 11:28:06 -0800 | [diff] [blame] | 93 | static void __init rcu_bootup_announce(void) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 94 | { | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 95 | 	printk(KERN_INFO "Preemptible hierarchical RCU implementation.\n"); | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 96 | 	rcu_bootup_announce_oddness(); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 97 | } | 
 | 98 |  | 
 | 99 | /* | 
 | 100 |  * Return the number of RCU-preempt batches processed thus far | 
 | 101 |  * for debug and statistics. | 
 | 102 |  */ | 
 | 103 | long rcu_batches_completed_preempt(void) | 
 | 104 | { | 
 | 105 | 	return rcu_preempt_state.completed; | 
 | 106 | } | 
 | 107 | EXPORT_SYMBOL_GPL(rcu_batches_completed_preempt); | 
 | 108 |  | 
 | 109 | /* | 
 | 110 |  * Return the number of RCU batches processed thus far for debug & stats. | 
 | 111 |  */ | 
 | 112 | long rcu_batches_completed(void) | 
 | 113 | { | 
 | 114 | 	return rcu_batches_completed_preempt(); | 
 | 115 | } | 
 | 116 | EXPORT_SYMBOL_GPL(rcu_batches_completed); | 
 | 117 |  | 
 | 118 | /* | 
| Paul E. McKenney | bf66f18 | 2010-01-04 15:09:10 -0800 | [diff] [blame] | 119 |  * Force a quiescent state for preemptible RCU. | 
 | 120 |  */ | 
 | 121 | void rcu_force_quiescent_state(void) | 
 | 122 | { | 
| Paul E. McKenney | 4cdfc17 | 2012-06-22 17:06:26 -0700 | [diff] [blame] | 123 | 	force_quiescent_state(&rcu_preempt_state); | 
| Paul E. McKenney | bf66f18 | 2010-01-04 15:09:10 -0800 | [diff] [blame] | 124 | } | 
 | 125 | EXPORT_SYMBOL_GPL(rcu_force_quiescent_state); | 
 | 126 |  | 
 | 127 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 128 |  * Record a preemptible-RCU quiescent state for the specified CPU.  Note | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 129 |  * that this just means that the task currently running on the CPU is | 
 | 130 |  * not in a quiescent state.  There might be any number of tasks blocked | 
 | 131 |  * while in an RCU read-side critical section. | 
| Paul E. McKenney | 25502a6 | 2010-04-01 17:37:01 -0700 | [diff] [blame] | 132 |  * | 
 | 133 |  * Unlike the other rcu_*_qs() functions, callers to this function | 
 | 134 |  * must disable irqs in order to protect the assignment to | 
 | 135 |  * ->rcu_read_unlock_special. | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 136 |  */ | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 137 | static void rcu_preempt_qs(int cpu) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 138 | { | 
 | 139 | 	struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu); | 
| Paul E. McKenney | 25502a6 | 2010-04-01 17:37:01 -0700 | [diff] [blame] | 140 |  | 
| Paul E. McKenney | e4cc1f2 | 2011-06-27 00:17:43 -0700 | [diff] [blame] | 141 | 	if (rdp->passed_quiesce == 0) | 
| Paul E. McKenney | d4c08f2 | 2011-06-25 06:36:56 -0700 | [diff] [blame] | 142 | 		trace_rcu_grace_period("rcu_preempt", rdp->gpnum, "cpuqs"); | 
| Paul E. McKenney | e4cc1f2 | 2011-06-27 00:17:43 -0700 | [diff] [blame] | 143 | 	rdp->passed_quiesce = 1; | 
| Paul E. McKenney | 25502a6 | 2010-04-01 17:37:01 -0700 | [diff] [blame] | 144 | 	current->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_NEED_QS; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 145 | } | 
 | 146 |  | 
 | 147 | /* | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 148 |  * We have entered the scheduler, and the current task might soon be | 
 | 149 |  * context-switched away from.  If this task is in an RCU read-side | 
 | 150 |  * critical section, we will no longer be able to rely on the CPU to | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 151 |  * record that fact, so we enqueue the task on the blkd_tasks list. | 
 | 152 |  * The task will dequeue itself when it exits the outermost enclosing | 
 | 153 |  * RCU read-side critical section.  Therefore, the current grace period | 
 | 154 |  * cannot be permitted to complete until the blkd_tasks list entries | 
 | 155 |  * predating the current grace period drain, in other words, until | 
 | 156 |  * rnp->gp_tasks becomes NULL. | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 157 |  * | 
 | 158 |  * Caller must disable preemption. | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 159 |  */ | 
| Paul E. McKenney | cba6d0d | 2012-07-02 07:08:42 -0700 | [diff] [blame] | 160 | static void rcu_preempt_note_context_switch(int cpu) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 161 | { | 
 | 162 | 	struct task_struct *t = current; | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 163 | 	unsigned long flags; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 164 | 	struct rcu_data *rdp; | 
 | 165 | 	struct rcu_node *rnp; | 
 | 166 |  | 
| Paul E. McKenney | 10f39bb | 2011-07-17 21:14:35 -0700 | [diff] [blame] | 167 | 	if (t->rcu_read_lock_nesting > 0 && | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 168 | 	    (t->rcu_read_unlock_special & RCU_READ_UNLOCK_BLOCKED) == 0) { | 
 | 169 |  | 
 | 170 | 		/* Possibly blocking in an RCU read-side critical section. */ | 
| Paul E. McKenney | cba6d0d | 2012-07-02 07:08:42 -0700 | [diff] [blame] | 171 | 		rdp = per_cpu_ptr(rcu_preempt_state.rda, cpu); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 172 | 		rnp = rdp->mynode; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 173 | 		raw_spin_lock_irqsave(&rnp->lock, flags); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 174 | 		t->rcu_read_unlock_special |= RCU_READ_UNLOCK_BLOCKED; | 
| Paul E. McKenney | 8684896 | 2009-08-27 15:00:12 -0700 | [diff] [blame] | 175 | 		t->rcu_blocked_node = rnp; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 176 |  | 
 | 177 | 		/* | 
 | 178 | 		 * If this CPU has already checked in, then this task | 
 | 179 | 		 * will hold up the next grace period rather than the | 
 | 180 | 		 * current grace period.  Queue the task accordingly. | 
 | 181 | 		 * If the task is queued for the current grace period | 
 | 182 | 		 * (i.e., this CPU has not yet passed through a quiescent | 
 | 183 | 		 * state for the current grace period), then as long | 
 | 184 | 		 * as that task remains queued, the current grace period | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 185 | 		 * cannot end.  Note that there is some uncertainty as | 
 | 186 | 		 * to exactly when the current grace period started. | 
 | 187 | 		 * We take a conservative approach, which can result | 
 | 188 | 		 * in unnecessarily waiting on tasks that started very | 
 | 189 | 		 * slightly after the current grace period began.  C'est | 
 | 190 | 		 * la vie!!! | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 191 | 		 * | 
 | 192 | 		 * But first, note that the current CPU must still be | 
 | 193 | 		 * on line! | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 194 | 		 */ | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 195 | 		WARN_ON_ONCE((rdp->grpmask & rnp->qsmaskinit) == 0); | 
| Paul E. McKenney | e7d8842 | 2009-09-18 09:50:18 -0700 | [diff] [blame] | 196 | 		WARN_ON_ONCE(!list_empty(&t->rcu_node_entry)); | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 197 | 		if ((rnp->qsmask & rdp->grpmask) && rnp->gp_tasks != NULL) { | 
 | 198 | 			list_add(&t->rcu_node_entry, rnp->gp_tasks->prev); | 
 | 199 | 			rnp->gp_tasks = &t->rcu_node_entry; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 200 | #ifdef CONFIG_RCU_BOOST | 
 | 201 | 			if (rnp->boost_tasks != NULL) | 
 | 202 | 				rnp->boost_tasks = rnp->gp_tasks; | 
 | 203 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 204 | 		} else { | 
 | 205 | 			list_add(&t->rcu_node_entry, &rnp->blkd_tasks); | 
 | 206 | 			if (rnp->qsmask & rdp->grpmask) | 
 | 207 | 				rnp->gp_tasks = &t->rcu_node_entry; | 
 | 208 | 		} | 
| Paul E. McKenney | d4c08f2 | 2011-06-25 06:36:56 -0700 | [diff] [blame] | 209 | 		trace_rcu_preempt_task(rdp->rsp->name, | 
 | 210 | 				       t->pid, | 
 | 211 | 				       (rnp->qsmask & rdp->grpmask) | 
 | 212 | 				       ? rnp->gpnum | 
 | 213 | 				       : rnp->gpnum + 1); | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 214 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | 10f39bb | 2011-07-17 21:14:35 -0700 | [diff] [blame] | 215 | 	} else if (t->rcu_read_lock_nesting < 0 && | 
 | 216 | 		   t->rcu_read_unlock_special) { | 
 | 217 |  | 
 | 218 | 		/* | 
 | 219 | 		 * Complete exit from RCU read-side critical section on | 
 | 220 | 		 * behalf of preempted instance of __rcu_read_unlock(). | 
 | 221 | 		 */ | 
 | 222 | 		rcu_read_unlock_special(t); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 223 | 	} | 
 | 224 |  | 
 | 225 | 	/* | 
 | 226 | 	 * Either we were not in an RCU read-side critical section to | 
 | 227 | 	 * begin with, or we have now recorded that critical section | 
 | 228 | 	 * globally.  Either way, we can now note a quiescent state | 
 | 229 | 	 * for this CPU.  Again, if we were in an RCU read-side critical | 
 | 230 | 	 * section, and if that critical section was blocking the current | 
 | 231 | 	 * grace period, then the fact that the task has been enqueued | 
 | 232 | 	 * means that we continue to block the current grace period. | 
 | 233 | 	 */ | 
| Paul E. McKenney | e7d8842 | 2009-09-18 09:50:18 -0700 | [diff] [blame] | 234 | 	local_irq_save(flags); | 
| Paul E. McKenney | cba6d0d | 2012-07-02 07:08:42 -0700 | [diff] [blame] | 235 | 	rcu_preempt_qs(cpu); | 
| Paul E. McKenney | e7d8842 | 2009-09-18 09:50:18 -0700 | [diff] [blame] | 236 | 	local_irq_restore(flags); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 237 | } | 
 | 238 |  | 
 | 239 | /* | 
| Paul E. McKenney | fc2219d | 2009-09-23 09:50:41 -0700 | [diff] [blame] | 240 |  * Check for preempted RCU readers blocking the current grace period | 
 | 241 |  * for the specified rcu_node structure.  If the caller needs a reliable | 
 | 242 |  * answer, it must hold the rcu_node's ->lock. | 
 | 243 |  */ | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 244 | static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp) | 
| Paul E. McKenney | fc2219d | 2009-09-23 09:50:41 -0700 | [diff] [blame] | 245 | { | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 246 | 	return rnp->gp_tasks != NULL; | 
| Paul E. McKenney | fc2219d | 2009-09-23 09:50:41 -0700 | [diff] [blame] | 247 | } | 
 | 248 |  | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 249 | /* | 
 | 250 |  * Record a quiescent state for all tasks that were previously queued | 
 | 251 |  * on the specified rcu_node structure and that were blocking the current | 
 | 252 |  * RCU grace period.  The caller must hold the specified rnp->lock with | 
 | 253 |  * irqs disabled, and this lock is released upon return, but irqs remain | 
 | 254 |  * disabled. | 
 | 255 |  */ | 
| Paul E. McKenney | d3f6bad | 2009-12-02 12:10:13 -0800 | [diff] [blame] | 256 | static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags) | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 257 | 	__releases(rnp->lock) | 
 | 258 | { | 
 | 259 | 	unsigned long mask; | 
 | 260 | 	struct rcu_node *rnp_p; | 
 | 261 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 262 | 	if (rnp->qsmask != 0 || rcu_preempt_blocked_readers_cgp(rnp)) { | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 263 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 264 | 		return;  /* Still need more quiescent states! */ | 
 | 265 | 	} | 
 | 266 |  | 
 | 267 | 	rnp_p = rnp->parent; | 
 | 268 | 	if (rnp_p == NULL) { | 
 | 269 | 		/* | 
 | 270 | 		 * Either there is only one rcu_node in the tree, | 
 | 271 | 		 * or tasks were kicked up to root rcu_node due to | 
 | 272 | 		 * CPUs going offline. | 
 | 273 | 		 */ | 
| Paul E. McKenney | d3f6bad | 2009-12-02 12:10:13 -0800 | [diff] [blame] | 274 | 		rcu_report_qs_rsp(&rcu_preempt_state, flags); | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 275 | 		return; | 
 | 276 | 	} | 
 | 277 |  | 
 | 278 | 	/* Report up the rest of the hierarchy. */ | 
 | 279 | 	mask = rnp->grpmask; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 280 | 	raw_spin_unlock(&rnp->lock);	/* irqs remain disabled. */ | 
 | 281 | 	raw_spin_lock(&rnp_p->lock);	/* irqs already disabled. */ | 
| Paul E. McKenney | d3f6bad | 2009-12-02 12:10:13 -0800 | [diff] [blame] | 282 | 	rcu_report_qs_rnp(mask, &rcu_preempt_state, rnp_p, flags); | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 283 | } | 
 | 284 |  | 
 | 285 | /* | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 286 |  * Advance a ->blkd_tasks-list pointer to the next entry, instead | 
 | 287 |  * returning NULL if at the end of the list. | 
 | 288 |  */ | 
 | 289 | static struct list_head *rcu_next_node_entry(struct task_struct *t, | 
 | 290 | 					     struct rcu_node *rnp) | 
 | 291 | { | 
 | 292 | 	struct list_head *np; | 
 | 293 |  | 
 | 294 | 	np = t->rcu_node_entry.next; | 
 | 295 | 	if (np == &rnp->blkd_tasks) | 
 | 296 | 		np = NULL; | 
 | 297 | 	return np; | 
 | 298 | } | 
 | 299 |  | 
 | 300 | /* | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 301 |  * Handle special cases during rcu_read_unlock(), such as needing to | 
 | 302 |  * notify RCU core processing or task having blocked during the RCU | 
 | 303 |  * read-side critical section. | 
 | 304 |  */ | 
| Paul E. McKenney | 2a3fa84 | 2012-05-21 11:58:36 -0700 | [diff] [blame] | 305 | void rcu_read_unlock_special(struct task_struct *t) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 306 | { | 
 | 307 | 	int empty; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 308 | 	int empty_exp; | 
| Paul E. McKenney | 389abd4 | 2011-09-21 14:41:37 -0700 | [diff] [blame] | 309 | 	int empty_exp_now; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 310 | 	unsigned long flags; | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 311 | 	struct list_head *np; | 
| Paul E. McKenney | 82e78d8 | 2011-08-04 07:55:34 -0700 | [diff] [blame] | 312 | #ifdef CONFIG_RCU_BOOST | 
 | 313 | 	struct rt_mutex *rbmp = NULL; | 
 | 314 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 315 | 	struct rcu_node *rnp; | 
 | 316 | 	int special; | 
 | 317 |  | 
 | 318 | 	/* NMI handlers cannot block and cannot safely manipulate state. */ | 
 | 319 | 	if (in_nmi()) | 
 | 320 | 		return; | 
 | 321 |  | 
 | 322 | 	local_irq_save(flags); | 
 | 323 |  | 
 | 324 | 	/* | 
 | 325 | 	 * If RCU core is waiting for this CPU to exit critical section, | 
 | 326 | 	 * let it know that we have done so. | 
 | 327 | 	 */ | 
 | 328 | 	special = t->rcu_read_unlock_special; | 
 | 329 | 	if (special & RCU_READ_UNLOCK_NEED_QS) { | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 330 | 		rcu_preempt_qs(smp_processor_id()); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 331 | 	} | 
 | 332 |  | 
 | 333 | 	/* Hardware IRQ handlers cannot block. */ | 
| Peter Zijlstra | ec433f0 | 2011-07-19 15:32:00 -0700 | [diff] [blame] | 334 | 	if (in_irq() || in_serving_softirq()) { | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 335 | 		local_irq_restore(flags); | 
 | 336 | 		return; | 
 | 337 | 	} | 
 | 338 |  | 
 | 339 | 	/* Clean up if blocked during RCU read-side critical section. */ | 
 | 340 | 	if (special & RCU_READ_UNLOCK_BLOCKED) { | 
 | 341 | 		t->rcu_read_unlock_special &= ~RCU_READ_UNLOCK_BLOCKED; | 
 | 342 |  | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 343 | 		/* | 
 | 344 | 		 * Remove this task from the list it blocked on.  The | 
 | 345 | 		 * task can migrate while we acquire the lock, but at | 
 | 346 | 		 * most one time.  So at most two passes through loop. | 
 | 347 | 		 */ | 
 | 348 | 		for (;;) { | 
| Paul E. McKenney | 8684896 | 2009-08-27 15:00:12 -0700 | [diff] [blame] | 349 | 			rnp = t->rcu_blocked_node; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 350 | 			raw_spin_lock(&rnp->lock);  /* irqs already disabled. */ | 
| Paul E. McKenney | 8684896 | 2009-08-27 15:00:12 -0700 | [diff] [blame] | 351 | 			if (rnp == t->rcu_blocked_node) | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 352 | 				break; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 353 | 			raw_spin_unlock(&rnp->lock); /* irqs remain disabled. */ | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 354 | 		} | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 355 | 		empty = !rcu_preempt_blocked_readers_cgp(rnp); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 356 | 		empty_exp = !rcu_preempted_readers_exp(rnp); | 
 | 357 | 		smp_mb(); /* ensure expedited fastpath sees end of RCU c-s. */ | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 358 | 		np = rcu_next_node_entry(t, rnp); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 359 | 		list_del_init(&t->rcu_node_entry); | 
| Paul E. McKenney | 82e78d8 | 2011-08-04 07:55:34 -0700 | [diff] [blame] | 360 | 		t->rcu_blocked_node = NULL; | 
| Paul E. McKenney | d4c08f2 | 2011-06-25 06:36:56 -0700 | [diff] [blame] | 361 | 		trace_rcu_unlock_preempted_task("rcu_preempt", | 
 | 362 | 						rnp->gpnum, t->pid); | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 363 | 		if (&t->rcu_node_entry == rnp->gp_tasks) | 
 | 364 | 			rnp->gp_tasks = np; | 
 | 365 | 		if (&t->rcu_node_entry == rnp->exp_tasks) | 
 | 366 | 			rnp->exp_tasks = np; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 367 | #ifdef CONFIG_RCU_BOOST | 
 | 368 | 		if (&t->rcu_node_entry == rnp->boost_tasks) | 
 | 369 | 			rnp->boost_tasks = np; | 
| Paul E. McKenney | 82e78d8 | 2011-08-04 07:55:34 -0700 | [diff] [blame] | 370 | 		/* Snapshot/clear ->rcu_boost_mutex with rcu_node lock held. */ | 
 | 371 | 		if (t->rcu_boost_mutex) { | 
 | 372 | 			rbmp = t->rcu_boost_mutex; | 
 | 373 | 			t->rcu_boost_mutex = NULL; | 
| Paul E. McKenney | 7765be2 | 2011-07-14 12:24:11 -0700 | [diff] [blame] | 374 | 		} | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 375 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 376 |  | 
 | 377 | 		/* | 
 | 378 | 		 * If this was the last task on the current list, and if | 
 | 379 | 		 * we aren't waiting on any CPUs, report the quiescent state. | 
| Paul E. McKenney | 389abd4 | 2011-09-21 14:41:37 -0700 | [diff] [blame] | 380 | 		 * Note that rcu_report_unblock_qs_rnp() releases rnp->lock, | 
 | 381 | 		 * so we must take a snapshot of the expedited state. | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 382 | 		 */ | 
| Paul E. McKenney | 389abd4 | 2011-09-21 14:41:37 -0700 | [diff] [blame] | 383 | 		empty_exp_now = !rcu_preempted_readers_exp(rnp); | 
| Paul E. McKenney | d4c08f2 | 2011-06-25 06:36:56 -0700 | [diff] [blame] | 384 | 		if (!empty && !rcu_preempt_blocked_readers_cgp(rnp)) { | 
 | 385 | 			trace_rcu_quiescent_state_report("preempt_rcu", | 
 | 386 | 							 rnp->gpnum, | 
 | 387 | 							 0, rnp->qsmask, | 
 | 388 | 							 rnp->level, | 
 | 389 | 							 rnp->grplo, | 
 | 390 | 							 rnp->grphi, | 
 | 391 | 							 !!rnp->gp_tasks); | 
| Paul E. McKenney | d3f6bad | 2009-12-02 12:10:13 -0800 | [diff] [blame] | 392 | 			rcu_report_unblock_qs_rnp(rnp, flags); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 393 | 		} else { | 
| Paul E. McKenney | d4c08f2 | 2011-06-25 06:36:56 -0700 | [diff] [blame] | 394 | 			raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 395 | 		} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 396 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 397 | #ifdef CONFIG_RCU_BOOST | 
 | 398 | 		/* Unboost if we were boosted. */ | 
| Paul E. McKenney | 82e78d8 | 2011-08-04 07:55:34 -0700 | [diff] [blame] | 399 | 		if (rbmp) | 
 | 400 | 			rt_mutex_unlock(rbmp); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 401 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
 | 402 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 403 | 		/* | 
 | 404 | 		 * If this was the last task on the expedited lists, | 
 | 405 | 		 * then we need to report up the rcu_node hierarchy. | 
 | 406 | 		 */ | 
| Paul E. McKenney | 389abd4 | 2011-09-21 14:41:37 -0700 | [diff] [blame] | 407 | 		if (!empty_exp && empty_exp_now) | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 408 | 			rcu_report_exp_rnp(&rcu_preempt_state, rnp, true); | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 409 | 	} else { | 
 | 410 | 		local_irq_restore(flags); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 411 | 	} | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 412 | } | 
 | 413 |  | 
| Paul E. McKenney | 1ed509a | 2010-02-22 17:05:05 -0800 | [diff] [blame] | 414 | #ifdef CONFIG_RCU_CPU_STALL_VERBOSE | 
 | 415 |  | 
 | 416 | /* | 
 | 417 |  * Dump detailed information for all tasks blocking the current RCU | 
 | 418 |  * grace period on the specified rcu_node structure. | 
 | 419 |  */ | 
 | 420 | static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp) | 
 | 421 | { | 
 | 422 | 	unsigned long flags; | 
| Paul E. McKenney | 1ed509a | 2010-02-22 17:05:05 -0800 | [diff] [blame] | 423 | 	struct task_struct *t; | 
 | 424 |  | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 425 | 	raw_spin_lock_irqsave(&rnp->lock, flags); | 
| Paul E. McKenney | 5fd4dc0 | 2012-08-10 16:00:11 -0700 | [diff] [blame] | 426 | 	if (!rcu_preempt_blocked_readers_cgp(rnp)) { | 
 | 427 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
 | 428 | 		return; | 
 | 429 | 	} | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 430 | 	t = list_entry(rnp->gp_tasks, | 
 | 431 | 		       struct task_struct, rcu_node_entry); | 
 | 432 | 	list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) | 
 | 433 | 		sched_show_task(t); | 
 | 434 | 	raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | 1ed509a | 2010-02-22 17:05:05 -0800 | [diff] [blame] | 435 | } | 
 | 436 |  | 
 | 437 | /* | 
 | 438 |  * Dump detailed information for all tasks blocking the current RCU | 
 | 439 |  * grace period. | 
 | 440 |  */ | 
 | 441 | static void rcu_print_detail_task_stall(struct rcu_state *rsp) | 
 | 442 | { | 
 | 443 | 	struct rcu_node *rnp = rcu_get_root(rsp); | 
 | 444 |  | 
 | 445 | 	rcu_print_detail_task_stall_rnp(rnp); | 
 | 446 | 	rcu_for_each_leaf_node(rsp, rnp) | 
 | 447 | 		rcu_print_detail_task_stall_rnp(rnp); | 
 | 448 | } | 
 | 449 |  | 
 | 450 | #else /* #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */ | 
 | 451 |  | 
 | 452 | static void rcu_print_detail_task_stall(struct rcu_state *rsp) | 
 | 453 | { | 
 | 454 | } | 
 | 455 |  | 
 | 456 | #endif /* #else #ifdef CONFIG_RCU_CPU_STALL_VERBOSE */ | 
 | 457 |  | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 458 | #ifdef CONFIG_RCU_CPU_STALL_INFO | 
 | 459 |  | 
 | 460 | static void rcu_print_task_stall_begin(struct rcu_node *rnp) | 
 | 461 | { | 
 | 462 | 	printk(KERN_ERR "\tTasks blocked on level-%d rcu_node (CPUs %d-%d):", | 
 | 463 | 	       rnp->level, rnp->grplo, rnp->grphi); | 
 | 464 | } | 
 | 465 |  | 
 | 466 | static void rcu_print_task_stall_end(void) | 
 | 467 | { | 
 | 468 | 	printk(KERN_CONT "\n"); | 
 | 469 | } | 
 | 470 |  | 
 | 471 | #else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */ | 
 | 472 |  | 
 | 473 | static void rcu_print_task_stall_begin(struct rcu_node *rnp) | 
 | 474 | { | 
 | 475 | } | 
 | 476 |  | 
 | 477 | static void rcu_print_task_stall_end(void) | 
 | 478 | { | 
 | 479 | } | 
 | 480 |  | 
 | 481 | #endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */ | 
 | 482 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 483 | /* | 
 | 484 |  * Scan the current list of tasks blocked within RCU read-side critical | 
 | 485 |  * sections, printing out the tid of each. | 
 | 486 |  */ | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 487 | static int rcu_print_task_stall(struct rcu_node *rnp) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 488 | { | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 489 | 	struct task_struct *t; | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 490 | 	int ndetected = 0; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 491 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 492 | 	if (!rcu_preempt_blocked_readers_cgp(rnp)) | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 493 | 		return 0; | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 494 | 	rcu_print_task_stall_begin(rnp); | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 495 | 	t = list_entry(rnp->gp_tasks, | 
 | 496 | 		       struct task_struct, rcu_node_entry); | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 497 | 	list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) { | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 498 | 		printk(KERN_CONT " P%d", t->pid); | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 499 | 		ndetected++; | 
 | 500 | 	} | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 501 | 	rcu_print_task_stall_end(); | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 502 | 	return ndetected; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 503 | } | 
 | 504 |  | 
| Paul E. McKenney | 53d84e0 | 2010-08-10 14:28:53 -0700 | [diff] [blame] | 505 | /* | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 506 |  * Check that the list of blocked tasks for the newly completed grace | 
 | 507 |  * period is in fact empty.  It is a serious bug to complete a grace | 
 | 508 |  * period that still has RCU readers blocked!  This function must be | 
 | 509 |  * invoked -before- updating this rnp's ->gpnum, and the rnp's ->lock | 
 | 510 |  * must be held by the caller. | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 511 |  * | 
 | 512 |  * Also, if there are blocked tasks on the list, they automatically | 
 | 513 |  * block the newly created grace period, so set up ->gp_tasks accordingly. | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 514 |  */ | 
 | 515 | static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp) | 
 | 516 | { | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 517 | 	WARN_ON_ONCE(rcu_preempt_blocked_readers_cgp(rnp)); | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 518 | 	if (!list_empty(&rnp->blkd_tasks)) | 
 | 519 | 		rnp->gp_tasks = rnp->blkd_tasks.next; | 
| Paul E. McKenney | 28ecd58 | 2009-09-18 09:50:17 -0700 | [diff] [blame] | 520 | 	WARN_ON_ONCE(rnp->qsmask); | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 521 | } | 
 | 522 |  | 
| Paul E. McKenney | 33f7614 | 2009-08-24 09:42:01 -0700 | [diff] [blame] | 523 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 524 |  | 
 | 525 | /* | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 526 |  * Handle tasklist migration for case in which all CPUs covered by the | 
 | 527 |  * specified rcu_node have gone offline.  Move them up to the root | 
 | 528 |  * rcu_node.  The reason for not just moving them to the immediate | 
 | 529 |  * parent is to remove the need for rcu_read_unlock_special() to | 
 | 530 |  * make more than two attempts to acquire the target rcu_node's lock. | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 531 |  * Returns true if there were tasks blocking the current RCU grace | 
 | 532 |  * period. | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 533 |  * | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 534 |  * Returns 1 if there was previously a task blocking the current grace | 
 | 535 |  * period on the specified rcu_node structure. | 
 | 536 |  * | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 537 |  * The caller must hold rnp->lock with irqs disabled. | 
 | 538 |  */ | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 539 | static int rcu_preempt_offline_tasks(struct rcu_state *rsp, | 
 | 540 | 				     struct rcu_node *rnp, | 
 | 541 | 				     struct rcu_data *rdp) | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 542 | { | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 543 | 	struct list_head *lp; | 
 | 544 | 	struct list_head *lp_root; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 545 | 	int retval = 0; | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 546 | 	struct rcu_node *rnp_root = rcu_get_root(rsp); | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 547 | 	struct task_struct *t; | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 548 |  | 
| Paul E. McKenney | 8684896 | 2009-08-27 15:00:12 -0700 | [diff] [blame] | 549 | 	if (rnp == rnp_root) { | 
 | 550 | 		WARN_ONCE(1, "Last CPU thought to be offlined?"); | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 551 | 		return 0;  /* Shouldn't happen: at least one CPU online. */ | 
| Paul E. McKenney | 8684896 | 2009-08-27 15:00:12 -0700 | [diff] [blame] | 552 | 	} | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 553 |  | 
 | 554 | 	/* If we are on an internal node, complain bitterly. */ | 
 | 555 | 	WARN_ON_ONCE(rnp != rdp->mynode); | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 556 |  | 
 | 557 | 	/* | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 558 | 	 * Move tasks up to root rcu_node.  Don't try to get fancy for | 
 | 559 | 	 * this corner-case operation -- just put this node's tasks | 
 | 560 | 	 * at the head of the root node's list, and update the root node's | 
 | 561 | 	 * ->gp_tasks and ->exp_tasks pointers to those of this node's, | 
 | 562 | 	 * if non-NULL.  This might result in waiting for more tasks than | 
 | 563 | 	 * absolutely necessary, but this is a good performance/complexity | 
 | 564 | 	 * tradeoff. | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 565 | 	 */ | 
| Paul E. McKenney | 2036d94 | 2012-01-30 17:02:47 -0800 | [diff] [blame] | 566 | 	if (rcu_preempt_blocked_readers_cgp(rnp) && rnp->qsmask == 0) | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 567 | 		retval |= RCU_OFL_TASKS_NORM_GP; | 
 | 568 | 	if (rcu_preempted_readers_exp(rnp)) | 
 | 569 | 		retval |= RCU_OFL_TASKS_EXP_GP; | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 570 | 	lp = &rnp->blkd_tasks; | 
 | 571 | 	lp_root = &rnp_root->blkd_tasks; | 
 | 572 | 	while (!list_empty(lp)) { | 
 | 573 | 		t = list_entry(lp->next, typeof(*t), rcu_node_entry); | 
 | 574 | 		raw_spin_lock(&rnp_root->lock); /* irqs already disabled */ | 
 | 575 | 		list_del(&t->rcu_node_entry); | 
 | 576 | 		t->rcu_blocked_node = rnp_root; | 
 | 577 | 		list_add(&t->rcu_node_entry, lp_root); | 
 | 578 | 		if (&t->rcu_node_entry == rnp->gp_tasks) | 
 | 579 | 			rnp_root->gp_tasks = rnp->gp_tasks; | 
 | 580 | 		if (&t->rcu_node_entry == rnp->exp_tasks) | 
 | 581 | 			rnp_root->exp_tasks = rnp->exp_tasks; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 582 | #ifdef CONFIG_RCU_BOOST | 
 | 583 | 		if (&t->rcu_node_entry == rnp->boost_tasks) | 
 | 584 | 			rnp_root->boost_tasks = rnp->boost_tasks; | 
 | 585 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 586 | 		raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */ | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 587 | 	} | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 588 |  | 
| Paul E. McKenney | 1e3fd2b | 2012-07-27 13:41:47 -0700 | [diff] [blame] | 589 | 	rnp->gp_tasks = NULL; | 
 | 590 | 	rnp->exp_tasks = NULL; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 591 | #ifdef CONFIG_RCU_BOOST | 
| Paul E. McKenney | 1e3fd2b | 2012-07-27 13:41:47 -0700 | [diff] [blame] | 592 | 	rnp->boost_tasks = NULL; | 
| Paul E. McKenney | 5cc900c | 2012-07-31 14:09:49 -0700 | [diff] [blame] | 593 | 	/* | 
 | 594 | 	 * In case root is being boosted and leaf was not.  Make sure | 
 | 595 | 	 * that we boost the tasks blocking the current grace period | 
 | 596 | 	 * in this case. | 
 | 597 | 	 */ | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 598 | 	raw_spin_lock(&rnp_root->lock); /* irqs already disabled */ | 
 | 599 | 	if (rnp_root->boost_tasks != NULL && | 
| Paul E. McKenney | 5cc900c | 2012-07-31 14:09:49 -0700 | [diff] [blame] | 600 | 	    rnp_root->boost_tasks != rnp_root->gp_tasks && | 
 | 601 | 	    rnp_root->boost_tasks != rnp_root->exp_tasks) | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 602 | 		rnp_root->boost_tasks = rnp_root->gp_tasks; | 
 | 603 | 	raw_spin_unlock(&rnp_root->lock); /* irqs still disabled */ | 
 | 604 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
 | 605 |  | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 606 | 	return retval; | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 607 | } | 
 | 608 |  | 
| Paul E. McKenney | e560140 | 2012-01-07 11:03:57 -0800 | [diff] [blame] | 609 | #endif /* #ifdef CONFIG_HOTPLUG_CPU */ | 
 | 610 |  | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 611 | /* | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 612 |  * Check for a quiescent state from the current CPU.  When a task blocks, | 
 | 613 |  * the task is recorded in the corresponding CPU's rcu_node structure, | 
 | 614 |  * which is checked elsewhere. | 
 | 615 |  * | 
 | 616 |  * Caller must disable hard irqs. | 
 | 617 |  */ | 
 | 618 | static void rcu_preempt_check_callbacks(int cpu) | 
 | 619 | { | 
 | 620 | 	struct task_struct *t = current; | 
 | 621 |  | 
 | 622 | 	if (t->rcu_read_lock_nesting == 0) { | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 623 | 		rcu_preempt_qs(cpu); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 624 | 		return; | 
 | 625 | 	} | 
| Paul E. McKenney | 10f39bb | 2011-07-17 21:14:35 -0700 | [diff] [blame] | 626 | 	if (t->rcu_read_lock_nesting > 0 && | 
 | 627 | 	    per_cpu(rcu_preempt_data, cpu).qs_pending) | 
| Paul E. McKenney | c3422be | 2009-09-13 09:15:10 -0700 | [diff] [blame] | 628 | 		t->rcu_read_unlock_special |= RCU_READ_UNLOCK_NEED_QS; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 629 | } | 
 | 630 |  | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 631 | #ifdef CONFIG_RCU_BOOST | 
 | 632 |  | 
| Shaohua Li | 0922337 | 2011-06-14 13:26:25 +0800 | [diff] [blame] | 633 | static void rcu_preempt_do_callbacks(void) | 
 | 634 | { | 
 | 635 | 	rcu_do_batch(&rcu_preempt_state, &__get_cpu_var(rcu_preempt_data)); | 
 | 636 | } | 
 | 637 |  | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 638 | #endif /* #ifdef CONFIG_RCU_BOOST */ | 
 | 639 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 640 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 641 |  * Queue a preemptible-RCU callback for invocation after a grace period. | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 642 |  */ | 
 | 643 | void call_rcu(struct rcu_head *head, void (*func)(struct rcu_head *rcu)) | 
 | 644 | { | 
| Paul E. McKenney | 486e259 | 2012-01-06 14:11:30 -0800 | [diff] [blame] | 645 | 	__call_rcu(head, func, &rcu_preempt_state, 0); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 646 | } | 
 | 647 | EXPORT_SYMBOL_GPL(call_rcu); | 
 | 648 |  | 
| Paul E. McKenney | 486e259 | 2012-01-06 14:11:30 -0800 | [diff] [blame] | 649 | /* | 
 | 650 |  * Queue an RCU callback for lazy invocation after a grace period. | 
 | 651 |  * This will likely be later named something like "call_rcu_lazy()", | 
 | 652 |  * but this change will require some way of tagging the lazy RCU | 
 | 653 |  * callbacks in the list of pending callbacks.  Until then, this | 
 | 654 |  * function may only be called from __kfree_rcu(). | 
 | 655 |  */ | 
 | 656 | void kfree_call_rcu(struct rcu_head *head, | 
 | 657 | 		    void (*func)(struct rcu_head *rcu)) | 
 | 658 | { | 
 | 659 | 	__call_rcu(head, func, &rcu_preempt_state, 1); | 
 | 660 | } | 
 | 661 | EXPORT_SYMBOL_GPL(kfree_call_rcu); | 
 | 662 |  | 
| Paul E. McKenney | 6ebb237 | 2009-11-22 08:53:50 -0800 | [diff] [blame] | 663 | /** | 
 | 664 |  * synchronize_rcu - wait until a grace period has elapsed. | 
 | 665 |  * | 
 | 666 |  * Control will return to the caller some time after a full grace | 
 | 667 |  * period has elapsed, in other words after all currently executing RCU | 
| Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 668 |  * read-side critical sections have completed.  Note, however, that | 
 | 669 |  * upon return from synchronize_rcu(), the caller might well be executing | 
 | 670 |  * concurrently with new RCU read-side critical sections that began while | 
 | 671 |  * synchronize_rcu() was waiting.  RCU read-side critical sections are | 
 | 672 |  * delimited by rcu_read_lock() and rcu_read_unlock(), and may be nested. | 
| Paul E. McKenney | 6ebb237 | 2009-11-22 08:53:50 -0800 | [diff] [blame] | 673 |  */ | 
 | 674 | void synchronize_rcu(void) | 
 | 675 | { | 
| Paul E. McKenney | fe15d70 | 2012-01-04 13:30:33 -0800 | [diff] [blame] | 676 | 	rcu_lockdep_assert(!lock_is_held(&rcu_bh_lock_map) && | 
 | 677 | 			   !lock_is_held(&rcu_lock_map) && | 
 | 678 | 			   !lock_is_held(&rcu_sched_lock_map), | 
 | 679 | 			   "Illegal synchronize_rcu() in RCU read-side critical section"); | 
| Paul E. McKenney | 6ebb237 | 2009-11-22 08:53:50 -0800 | [diff] [blame] | 680 | 	if (!rcu_scheduler_active) | 
 | 681 | 		return; | 
| Paul E. McKenney | 2c42818 | 2011-05-26 22:14:36 -0700 | [diff] [blame] | 682 | 	wait_rcu_gp(call_rcu); | 
| Paul E. McKenney | 6ebb237 | 2009-11-22 08:53:50 -0800 | [diff] [blame] | 683 | } | 
 | 684 | EXPORT_SYMBOL_GPL(synchronize_rcu); | 
 | 685 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 686 | static DECLARE_WAIT_QUEUE_HEAD(sync_rcu_preempt_exp_wq); | 
| Paul E. McKenney | bcfa57c | 2012-07-23 16:03:51 -0700 | [diff] [blame] | 687 | static unsigned long sync_rcu_preempt_exp_count; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 688 | static DEFINE_MUTEX(sync_rcu_preempt_exp_mutex); | 
 | 689 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 690 | /* | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 691 |  * Return non-zero if there are any tasks in RCU read-side critical | 
 | 692 |  * sections blocking the current preemptible-RCU expedited grace period. | 
 | 693 |  * If there is no preemptible-RCU expedited grace period currently in | 
 | 694 |  * progress, returns zero unconditionally. | 
 | 695 |  */ | 
 | 696 | static int rcu_preempted_readers_exp(struct rcu_node *rnp) | 
 | 697 | { | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 698 | 	return rnp->exp_tasks != NULL; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 699 | } | 
 | 700 |  | 
 | 701 | /* | 
 | 702 |  * return non-zero if there is no RCU expedited grace period in progress | 
 | 703 |  * for the specified rcu_node structure, in other words, if all CPUs and | 
 | 704 |  * tasks covered by the specified rcu_node structure have done their bit | 
 | 705 |  * for the current expedited grace period.  Works only for preemptible | 
 | 706 |  * RCU -- other RCU implementation use other means. | 
 | 707 |  * | 
 | 708 |  * Caller must hold sync_rcu_preempt_exp_mutex. | 
 | 709 |  */ | 
 | 710 | static int sync_rcu_preempt_exp_done(struct rcu_node *rnp) | 
 | 711 | { | 
 | 712 | 	return !rcu_preempted_readers_exp(rnp) && | 
 | 713 | 	       ACCESS_ONCE(rnp->expmask) == 0; | 
 | 714 | } | 
 | 715 |  | 
 | 716 | /* | 
 | 717 |  * Report the exit from RCU read-side critical section for the last task | 
 | 718 |  * that queued itself during or before the current expedited preemptible-RCU | 
 | 719 |  * grace period.  This event is reported either to the rcu_node structure on | 
 | 720 |  * which the task was queued or to one of that rcu_node structure's ancestors, | 
 | 721 |  * recursively up the tree.  (Calm down, calm down, we do the recursion | 
 | 722 |  * iteratively!) | 
 | 723 |  * | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 724 |  * Most callers will set the "wake" flag, but the task initiating the | 
 | 725 |  * expedited grace period need not wake itself. | 
 | 726 |  * | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 727 |  * Caller must hold sync_rcu_preempt_exp_mutex. | 
 | 728 |  */ | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 729 | static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp, | 
 | 730 | 			       bool wake) | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 731 | { | 
 | 732 | 	unsigned long flags; | 
 | 733 | 	unsigned long mask; | 
 | 734 |  | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 735 | 	raw_spin_lock_irqsave(&rnp->lock, flags); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 736 | 	for (;;) { | 
| Paul E. McKenney | 131906b | 2011-07-17 02:05:49 -0700 | [diff] [blame] | 737 | 		if (!sync_rcu_preempt_exp_done(rnp)) { | 
 | 738 | 			raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 739 | 			break; | 
| Paul E. McKenney | 131906b | 2011-07-17 02:05:49 -0700 | [diff] [blame] | 740 | 		} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 741 | 		if (rnp->parent == NULL) { | 
| Paul E. McKenney | 131906b | 2011-07-17 02:05:49 -0700 | [diff] [blame] | 742 | 			raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 743 | 			if (wake) | 
 | 744 | 				wake_up(&sync_rcu_preempt_exp_wq); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 745 | 			break; | 
 | 746 | 		} | 
 | 747 | 		mask = rnp->grpmask; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 748 | 		raw_spin_unlock(&rnp->lock); /* irqs remain disabled */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 749 | 		rnp = rnp->parent; | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 750 | 		raw_spin_lock(&rnp->lock); /* irqs already disabled */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 751 | 		rnp->expmask &= ~mask; | 
 | 752 | 	} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 753 | } | 
 | 754 |  | 
 | 755 | /* | 
 | 756 |  * Snapshot the tasks blocking the newly started preemptible-RCU expedited | 
 | 757 |  * grace period for the specified rcu_node structure.  If there are no such | 
 | 758 |  * tasks, report it up the rcu_node hierarchy. | 
 | 759 |  * | 
 | 760 |  * Caller must hold sync_rcu_preempt_exp_mutex and rsp->onofflock. | 
 | 761 |  */ | 
 | 762 | static void | 
 | 763 | sync_rcu_preempt_exp_init(struct rcu_state *rsp, struct rcu_node *rnp) | 
 | 764 | { | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 765 | 	unsigned long flags; | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 766 | 	int must_wait = 0; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 767 |  | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 768 | 	raw_spin_lock_irqsave(&rnp->lock, flags); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 769 | 	if (list_empty(&rnp->blkd_tasks)) { | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 770 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 771 | 	} else { | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 772 | 		rnp->exp_tasks = rnp->blkd_tasks.next; | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 773 | 		rcu_initiate_boost(rnp, flags);  /* releases rnp->lock */ | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 774 | 		must_wait = 1; | 
 | 775 | 	} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 776 | 	if (!must_wait) | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 777 | 		rcu_report_exp_rnp(rsp, rnp, false); /* Don't wake self. */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 778 | } | 
 | 779 |  | 
| Paul E. McKenney | 236fefa | 2012-01-31 14:00:41 -0800 | [diff] [blame] | 780 | /** | 
 | 781 |  * synchronize_rcu_expedited - Brute-force RCU grace period | 
 | 782 |  * | 
 | 783 |  * Wait for an RCU-preempt grace period, but expedite it.  The basic | 
 | 784 |  * idea is to invoke synchronize_sched_expedited() to push all the tasks to | 
 | 785 |  * the ->blkd_tasks lists and wait for this list to drain.  This consumes | 
 | 786 |  * significant time on all CPUs and is unfriendly to real-time workloads, | 
 | 787 |  * so is thus not recommended for any sort of common-case code. | 
 | 788 |  * In fact, if you are using synchronize_rcu_expedited() in a loop, | 
 | 789 |  * please restructure your code to batch your updates, and then Use a | 
 | 790 |  * single synchronize_rcu() instead. | 
 | 791 |  * | 
 | 792 |  * Note that it is illegal to call this function while holding any lock | 
 | 793 |  * that is acquired by a CPU-hotplug notifier.  And yes, it is also illegal | 
 | 794 |  * to call this function from a CPU-hotplug notifier.  Failing to observe | 
 | 795 |  * these restriction will result in deadlock. | 
| Paul E. McKenney | 019129d5 | 2009-10-14 10:15:56 -0700 | [diff] [blame] | 796 |  */ | 
 | 797 | void synchronize_rcu_expedited(void) | 
 | 798 | { | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 799 | 	unsigned long flags; | 
 | 800 | 	struct rcu_node *rnp; | 
 | 801 | 	struct rcu_state *rsp = &rcu_preempt_state; | 
| Paul E. McKenney | bcfa57c | 2012-07-23 16:03:51 -0700 | [diff] [blame] | 802 | 	unsigned long snap; | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 803 | 	int trycount = 0; | 
 | 804 |  | 
 | 805 | 	smp_mb(); /* Caller's modifications seen first by other CPUs. */ | 
 | 806 | 	snap = ACCESS_ONCE(sync_rcu_preempt_exp_count) + 1; | 
 | 807 | 	smp_mb(); /* Above access cannot bleed into critical section. */ | 
 | 808 |  | 
 | 809 | 	/* | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 810 | 	 * Block CPU-hotplug operations.  This means that any CPU-hotplug | 
 | 811 | 	 * operation that finds an rcu_node structure with tasks in the | 
 | 812 | 	 * process of being boosted will know that all tasks blocking | 
 | 813 | 	 * this expedited grace period will already be in the process of | 
 | 814 | 	 * being boosted.  This simplifies the process of moving tasks | 
 | 815 | 	 * from leaf to root rcu_node structures. | 
 | 816 | 	 */ | 
 | 817 | 	get_online_cpus(); | 
 | 818 |  | 
 | 819 | 	/* | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 820 | 	 * Acquire lock, falling back to synchronize_rcu() if too many | 
 | 821 | 	 * lock-acquisition failures.  Of course, if someone does the | 
 | 822 | 	 * expedited grace period for us, just leave. | 
 | 823 | 	 */ | 
 | 824 | 	while (!mutex_trylock(&sync_rcu_preempt_exp_mutex)) { | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 825 | 		if (ULONG_CMP_LT(snap, | 
 | 826 | 		    ACCESS_ONCE(sync_rcu_preempt_exp_count))) { | 
 | 827 | 			put_online_cpus(); | 
 | 828 | 			goto mb_ret; /* Others did our work for us. */ | 
 | 829 | 		} | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 830 | 		if (trycount++ < 10) { | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 831 | 			udelay(trycount * num_online_cpus()); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 832 | 		} else { | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 833 | 			put_online_cpus(); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 834 | 			synchronize_rcu(); | 
 | 835 | 			return; | 
 | 836 | 		} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 837 | 	} | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 838 | 	if (ULONG_CMP_LT(snap, ACCESS_ONCE(sync_rcu_preempt_exp_count))) { | 
 | 839 | 		put_online_cpus(); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 840 | 		goto unlock_mb_ret; /* Others did our work for us. */ | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 841 | 	} | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 842 |  | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 843 | 	/* force all RCU readers onto ->blkd_tasks lists. */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 844 | 	synchronize_sched_expedited(); | 
 | 845 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 846 | 	/* Initialize ->expmask for all non-leaf rcu_node structures. */ | 
 | 847 | 	rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) { | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 848 | 		raw_spin_lock_irqsave(&rnp->lock, flags); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 849 | 		rnp->expmask = rnp->qsmaskinit; | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 850 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 851 | 	} | 
 | 852 |  | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 853 | 	/* Snapshot current state of ->blkd_tasks lists. */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 854 | 	rcu_for_each_leaf_node(rsp, rnp) | 
 | 855 | 		sync_rcu_preempt_exp_init(rsp, rnp); | 
 | 856 | 	if (NUM_RCU_NODES > 1) | 
 | 857 | 		sync_rcu_preempt_exp_init(rsp, rcu_get_root(rsp)); | 
 | 858 |  | 
| Paul E. McKenney | 1943c89 | 2012-07-30 17:19:25 -0700 | [diff] [blame] | 859 | 	put_online_cpus(); | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 860 |  | 
| Paul E. McKenney | 12f5f52 | 2010-11-29 21:56:39 -0800 | [diff] [blame] | 861 | 	/* Wait for snapshotted ->blkd_tasks lists to drain. */ | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 862 | 	rnp = rcu_get_root(rsp); | 
 | 863 | 	wait_event(sync_rcu_preempt_exp_wq, | 
 | 864 | 		   sync_rcu_preempt_exp_done(rnp)); | 
 | 865 |  | 
 | 866 | 	/* Clean up and exit. */ | 
 | 867 | 	smp_mb(); /* ensure expedited GP seen before counter increment. */ | 
 | 868 | 	ACCESS_ONCE(sync_rcu_preempt_exp_count)++; | 
 | 869 | unlock_mb_ret: | 
 | 870 | 	mutex_unlock(&sync_rcu_preempt_exp_mutex); | 
 | 871 | mb_ret: | 
 | 872 | 	smp_mb(); /* ensure subsequent action seen after grace period. */ | 
| Paul E. McKenney | 019129d5 | 2009-10-14 10:15:56 -0700 | [diff] [blame] | 873 | } | 
 | 874 | EXPORT_SYMBOL_GPL(synchronize_rcu_expedited); | 
 | 875 |  | 
| Paul E. McKenney | e74f4c4 | 2009-10-06 21:48:17 -0700 | [diff] [blame] | 876 | /** | 
 | 877 |  * rcu_barrier - Wait until all in-flight call_rcu() callbacks complete. | 
 | 878 |  */ | 
 | 879 | void rcu_barrier(void) | 
 | 880 | { | 
| Paul E. McKenney | 037b64e | 2012-05-28 23:26:01 -0700 | [diff] [blame] | 881 | 	_rcu_barrier(&rcu_preempt_state); | 
| Paul E. McKenney | e74f4c4 | 2009-10-06 21:48:17 -0700 | [diff] [blame] | 882 | } | 
 | 883 | EXPORT_SYMBOL_GPL(rcu_barrier); | 
 | 884 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 885 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 886 |  * Initialize preemptible RCU's state structures. | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 887 |  */ | 
 | 888 | static void __init __rcu_init_preempt(void) | 
 | 889 | { | 
| Lai Jiangshan | 394f99a | 2010-06-28 16:25:04 +0800 | [diff] [blame] | 890 | 	rcu_init_one(&rcu_preempt_state, &rcu_preempt_data); | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 891 | } | 
 | 892 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 893 | #else /* #ifdef CONFIG_TREE_PREEMPT_RCU */ | 
 | 894 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 895 | static struct rcu_state *rcu_state = &rcu_sched_state; | 
 | 896 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 897 | /* | 
 | 898 |  * Tell them what RCU they are running. | 
 | 899 |  */ | 
| Paul E. McKenney | 0e0fc1c | 2009-11-11 11:28:06 -0800 | [diff] [blame] | 900 | static void __init rcu_bootup_announce(void) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 901 | { | 
 | 902 | 	printk(KERN_INFO "Hierarchical RCU implementation.\n"); | 
| Paul E. McKenney | 26845c2 | 2010-04-13 14:19:23 -0700 | [diff] [blame] | 903 | 	rcu_bootup_announce_oddness(); | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 904 | } | 
 | 905 |  | 
 | 906 | /* | 
 | 907 |  * Return the number of RCU batches processed thus far for debug & stats. | 
 | 908 |  */ | 
 | 909 | long rcu_batches_completed(void) | 
 | 910 | { | 
 | 911 | 	return rcu_batches_completed_sched(); | 
 | 912 | } | 
 | 913 | EXPORT_SYMBOL_GPL(rcu_batches_completed); | 
 | 914 |  | 
 | 915 | /* | 
| Paul E. McKenney | bf66f18 | 2010-01-04 15:09:10 -0800 | [diff] [blame] | 916 |  * Force a quiescent state for RCU, which, because there is no preemptible | 
 | 917 |  * RCU, becomes the same as rcu-sched. | 
 | 918 |  */ | 
 | 919 | void rcu_force_quiescent_state(void) | 
 | 920 | { | 
 | 921 | 	rcu_sched_force_quiescent_state(); | 
 | 922 | } | 
 | 923 | EXPORT_SYMBOL_GPL(rcu_force_quiescent_state); | 
 | 924 |  | 
 | 925 | /* | 
| Paul E. McKenney | cba6d0d | 2012-07-02 07:08:42 -0700 | [diff] [blame] | 926 |  * Because preemptible RCU does not exist, we never have to check for | 
 | 927 |  * CPUs being in quiescent states. | 
 | 928 |  */ | 
 | 929 | static void rcu_preempt_note_context_switch(int cpu) | 
 | 930 | { | 
 | 931 | } | 
 | 932 |  | 
 | 933 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 934 |  * Because preemptible RCU does not exist, there are never any preempted | 
| Paul E. McKenney | fc2219d | 2009-09-23 09:50:41 -0700 | [diff] [blame] | 935 |  * RCU readers. | 
 | 936 |  */ | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 937 | static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp) | 
| Paul E. McKenney | fc2219d | 2009-09-23 09:50:41 -0700 | [diff] [blame] | 938 | { | 
 | 939 | 	return 0; | 
 | 940 | } | 
 | 941 |  | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 942 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 943 |  | 
 | 944 | /* Because preemptible RCU does not exist, no quieting of tasks. */ | 
| Paul E. McKenney | d3f6bad | 2009-12-02 12:10:13 -0800 | [diff] [blame] | 945 | static void rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags) | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 946 | { | 
| Paul E. McKenney | 1304afb | 2010-02-22 17:05:02 -0800 | [diff] [blame] | 947 | 	raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | b668c9c | 2009-11-22 08:53:48 -0800 | [diff] [blame] | 948 | } | 
 | 949 |  | 
 | 950 | #endif /* #ifdef CONFIG_HOTPLUG_CPU */ | 
 | 951 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 952 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 953 |  * Because preemptible RCU does not exist, we never have to check for | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 954 |  * tasks blocked within RCU read-side critical sections. | 
 | 955 |  */ | 
| Paul E. McKenney | 1ed509a | 2010-02-22 17:05:05 -0800 | [diff] [blame] | 956 | static void rcu_print_detail_task_stall(struct rcu_state *rsp) | 
 | 957 | { | 
 | 958 | } | 
 | 959 |  | 
 | 960 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 961 |  * Because preemptible RCU does not exist, we never have to check for | 
| Paul E. McKenney | 1ed509a | 2010-02-22 17:05:05 -0800 | [diff] [blame] | 962 |  * tasks blocked within RCU read-side critical sections. | 
 | 963 |  */ | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 964 | static int rcu_print_task_stall(struct rcu_node *rnp) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 965 | { | 
| Paul E. McKenney | 9bc8b55 | 2011-08-13 13:31:47 -0700 | [diff] [blame] | 966 | 	return 0; | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 967 | } | 
 | 968 |  | 
| Paul E. McKenney | 53d84e0 | 2010-08-10 14:28:53 -0700 | [diff] [blame] | 969 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 970 |  * Because there is no preemptible RCU, there can be no readers blocked, | 
| Paul E. McKenney | 49e2912 | 2009-09-18 09:50:19 -0700 | [diff] [blame] | 971 |  * so there is no need to check for blocked tasks.  So check only for | 
 | 972 |  * bogus qsmask values. | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 973 |  */ | 
 | 974 | static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp) | 
 | 975 | { | 
| Paul E. McKenney | 49e2912 | 2009-09-18 09:50:19 -0700 | [diff] [blame] | 976 | 	WARN_ON_ONCE(rnp->qsmask); | 
| Paul E. McKenney | b0e165c | 2009-09-13 09:15:09 -0700 | [diff] [blame] | 977 | } | 
 | 978 |  | 
| Paul E. McKenney | 33f7614 | 2009-08-24 09:42:01 -0700 | [diff] [blame] | 979 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 980 |  | 
 | 981 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 982 |  * Because preemptible RCU does not exist, it never needs to migrate | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 983 |  * tasks that were blocked within RCU read-side critical sections, and | 
 | 984 |  * such non-existent tasks cannot possibly have been blocking the current | 
 | 985 |  * grace period. | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 986 |  */ | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 987 | static int rcu_preempt_offline_tasks(struct rcu_state *rsp, | 
 | 988 | 				     struct rcu_node *rnp, | 
 | 989 | 				     struct rcu_data *rdp) | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 990 | { | 
| Paul E. McKenney | 237c80c | 2009-10-15 09:26:14 -0700 | [diff] [blame] | 991 | 	return 0; | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 992 | } | 
 | 993 |  | 
| Paul E. McKenney | e560140 | 2012-01-07 11:03:57 -0800 | [diff] [blame] | 994 | #endif /* #ifdef CONFIG_HOTPLUG_CPU */ | 
 | 995 |  | 
| Paul E. McKenney | dd5d19b | 2009-08-27 14:58:16 -0700 | [diff] [blame] | 996 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 997 |  * Because preemptible RCU does not exist, it never has any callbacks | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 998 |  * to check. | 
 | 999 |  */ | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 1000 | static void rcu_preempt_check_callbacks(int cpu) | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 1001 | { | 
 | 1002 | } | 
 | 1003 |  | 
 | 1004 | /* | 
| Paul E. McKenney | 486e259 | 2012-01-06 14:11:30 -0800 | [diff] [blame] | 1005 |  * Queue an RCU callback for lazy invocation after a grace period. | 
 | 1006 |  * This will likely be later named something like "call_rcu_lazy()", | 
 | 1007 |  * but this change will require some way of tagging the lazy RCU | 
 | 1008 |  * callbacks in the list of pending callbacks.  Until then, this | 
 | 1009 |  * function may only be called from __kfree_rcu(). | 
 | 1010 |  * | 
 | 1011 |  * Because there is no preemptible RCU, we use RCU-sched instead. | 
 | 1012 |  */ | 
 | 1013 | void kfree_call_rcu(struct rcu_head *head, | 
 | 1014 | 		    void (*func)(struct rcu_head *rcu)) | 
 | 1015 | { | 
 | 1016 | 	__call_rcu(head, func, &rcu_sched_state, 1); | 
 | 1017 | } | 
 | 1018 | EXPORT_SYMBOL_GPL(kfree_call_rcu); | 
 | 1019 |  | 
 | 1020 | /* | 
| Paul E. McKenney | 019129d5 | 2009-10-14 10:15:56 -0700 | [diff] [blame] | 1021 |  * Wait for an rcu-preempt grace period, but make it happen quickly. | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 1022 |  * But because preemptible RCU does not exist, map to rcu-sched. | 
| Paul E. McKenney | 019129d5 | 2009-10-14 10:15:56 -0700 | [diff] [blame] | 1023 |  */ | 
 | 1024 | void synchronize_rcu_expedited(void) | 
 | 1025 | { | 
 | 1026 | 	synchronize_sched_expedited(); | 
 | 1027 | } | 
 | 1028 | EXPORT_SYMBOL_GPL(synchronize_rcu_expedited); | 
 | 1029 |  | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 1030 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 1031 |  | 
 | 1032 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 1033 |  * Because preemptible RCU does not exist, there is never any need to | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 1034 |  * report on tasks preempted in RCU read-side critical sections during | 
 | 1035 |  * expedited RCU grace periods. | 
 | 1036 |  */ | 
| Thomas Gleixner | b40d293 | 2011-10-22 07:12:34 -0700 | [diff] [blame] | 1037 | static void rcu_report_exp_rnp(struct rcu_state *rsp, struct rcu_node *rnp, | 
 | 1038 | 			       bool wake) | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 1039 | { | 
| Paul E. McKenney | d9a3da0 | 2009-12-02 12:10:15 -0800 | [diff] [blame] | 1040 | } | 
 | 1041 |  | 
 | 1042 | #endif /* #ifdef CONFIG_HOTPLUG_CPU */ | 
 | 1043 |  | 
| Paul E. McKenney | 019129d5 | 2009-10-14 10:15:56 -0700 | [diff] [blame] | 1044 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 1045 |  * Because preemptible RCU does not exist, rcu_barrier() is just | 
| Paul E. McKenney | e74f4c4 | 2009-10-06 21:48:17 -0700 | [diff] [blame] | 1046 |  * another name for rcu_barrier_sched(). | 
 | 1047 |  */ | 
 | 1048 | void rcu_barrier(void) | 
 | 1049 | { | 
 | 1050 | 	rcu_barrier_sched(); | 
 | 1051 | } | 
 | 1052 | EXPORT_SYMBOL_GPL(rcu_barrier); | 
 | 1053 |  | 
 | 1054 | /* | 
| Paul E. McKenney | 6cc6879 | 2011-03-02 13:15:15 -0800 | [diff] [blame] | 1055 |  * Because preemptible RCU does not exist, it need not be initialized. | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 1056 |  */ | 
 | 1057 | static void __init __rcu_init_preempt(void) | 
 | 1058 | { | 
 | 1059 | } | 
 | 1060 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 1061 | #endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */ | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1062 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1063 | #ifdef CONFIG_RCU_BOOST | 
 | 1064 |  | 
 | 1065 | #include "rtmutex_common.h" | 
 | 1066 |  | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1067 | #ifdef CONFIG_RCU_TRACE | 
 | 1068 |  | 
 | 1069 | static void rcu_initiate_boost_trace(struct rcu_node *rnp) | 
 | 1070 | { | 
 | 1071 | 	if (list_empty(&rnp->blkd_tasks)) | 
 | 1072 | 		rnp->n_balk_blkd_tasks++; | 
 | 1073 | 	else if (rnp->exp_tasks == NULL && rnp->gp_tasks == NULL) | 
 | 1074 | 		rnp->n_balk_exp_gp_tasks++; | 
 | 1075 | 	else if (rnp->gp_tasks != NULL && rnp->boost_tasks != NULL) | 
 | 1076 | 		rnp->n_balk_boost_tasks++; | 
 | 1077 | 	else if (rnp->gp_tasks != NULL && rnp->qsmask != 0) | 
 | 1078 | 		rnp->n_balk_notblocked++; | 
 | 1079 | 	else if (rnp->gp_tasks != NULL && | 
| Paul E. McKenney | a9f4793 | 2011-05-02 03:46:10 -0700 | [diff] [blame] | 1080 | 		 ULONG_CMP_LT(jiffies, rnp->boost_time)) | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1081 | 		rnp->n_balk_notyet++; | 
 | 1082 | 	else | 
 | 1083 | 		rnp->n_balk_nos++; | 
 | 1084 | } | 
 | 1085 |  | 
 | 1086 | #else /* #ifdef CONFIG_RCU_TRACE */ | 
 | 1087 |  | 
 | 1088 | static void rcu_initiate_boost_trace(struct rcu_node *rnp) | 
 | 1089 | { | 
 | 1090 | } | 
 | 1091 |  | 
 | 1092 | #endif /* #else #ifdef CONFIG_RCU_TRACE */ | 
 | 1093 |  | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1094 | static void rcu_wake_cond(struct task_struct *t, int status) | 
 | 1095 | { | 
 | 1096 | 	/* | 
 | 1097 | 	 * If the thread is yielding, only wake it when this | 
 | 1098 | 	 * is invoked from idle | 
 | 1099 | 	 */ | 
 | 1100 | 	if (status != RCU_KTHREAD_YIELDING || is_idle_task(current)) | 
 | 1101 | 		wake_up_process(t); | 
 | 1102 | } | 
 | 1103 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1104 | /* | 
 | 1105 |  * Carry out RCU priority boosting on the task indicated by ->exp_tasks | 
 | 1106 |  * or ->boost_tasks, advancing the pointer to the next task in the | 
 | 1107 |  * ->blkd_tasks list. | 
 | 1108 |  * | 
 | 1109 |  * Note that irqs must be enabled: boosting the task can block. | 
 | 1110 |  * Returns 1 if there are more tasks needing to be boosted. | 
 | 1111 |  */ | 
 | 1112 | static int rcu_boost(struct rcu_node *rnp) | 
 | 1113 | { | 
 | 1114 | 	unsigned long flags; | 
 | 1115 | 	struct rt_mutex mtx; | 
 | 1116 | 	struct task_struct *t; | 
 | 1117 | 	struct list_head *tb; | 
 | 1118 |  | 
 | 1119 | 	if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) | 
 | 1120 | 		return 0;  /* Nothing left to boost. */ | 
 | 1121 |  | 
 | 1122 | 	raw_spin_lock_irqsave(&rnp->lock, flags); | 
 | 1123 |  | 
 | 1124 | 	/* | 
 | 1125 | 	 * Recheck under the lock: all tasks in need of boosting | 
 | 1126 | 	 * might exit their RCU read-side critical sections on their own. | 
 | 1127 | 	 */ | 
 | 1128 | 	if (rnp->exp_tasks == NULL && rnp->boost_tasks == NULL) { | 
 | 1129 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
 | 1130 | 		return 0; | 
 | 1131 | 	} | 
 | 1132 |  | 
 | 1133 | 	/* | 
 | 1134 | 	 * Preferentially boost tasks blocking expedited grace periods. | 
 | 1135 | 	 * This cannot starve the normal grace periods because a second | 
 | 1136 | 	 * expedited grace period must boost all blocked tasks, including | 
 | 1137 | 	 * those blocking the pre-existing normal grace period. | 
 | 1138 | 	 */ | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1139 | 	if (rnp->exp_tasks != NULL) { | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1140 | 		tb = rnp->exp_tasks; | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1141 | 		rnp->n_exp_boosts++; | 
 | 1142 | 	} else { | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1143 | 		tb = rnp->boost_tasks; | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1144 | 		rnp->n_normal_boosts++; | 
 | 1145 | 	} | 
 | 1146 | 	rnp->n_tasks_boosted++; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1147 |  | 
 | 1148 | 	/* | 
 | 1149 | 	 * We boost task t by manufacturing an rt_mutex that appears to | 
 | 1150 | 	 * be held by task t.  We leave a pointer to that rt_mutex where | 
 | 1151 | 	 * task t can find it, and task t will release the mutex when it | 
 | 1152 | 	 * exits its outermost RCU read-side critical section.  Then | 
 | 1153 | 	 * simply acquiring this artificial rt_mutex will boost task | 
 | 1154 | 	 * t's priority.  (Thanks to tglx for suggesting this approach!) | 
 | 1155 | 	 * | 
 | 1156 | 	 * Note that task t must acquire rnp->lock to remove itself from | 
 | 1157 | 	 * the ->blkd_tasks list, which it will do from exit() if from | 
 | 1158 | 	 * nowhere else.  We therefore are guaranteed that task t will | 
 | 1159 | 	 * stay around at least until we drop rnp->lock.  Note that | 
 | 1160 | 	 * rnp->lock also resolves races between our priority boosting | 
 | 1161 | 	 * and task t's exiting its outermost RCU read-side critical | 
 | 1162 | 	 * section. | 
 | 1163 | 	 */ | 
 | 1164 | 	t = container_of(tb, struct task_struct, rcu_node_entry); | 
 | 1165 | 	rt_mutex_init_proxy_locked(&mtx, t); | 
 | 1166 | 	t->rcu_boost_mutex = &mtx; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1167 | 	raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
 | 1168 | 	rt_mutex_lock(&mtx);  /* Side effect: boosts task t's priority. */ | 
 | 1169 | 	rt_mutex_unlock(&mtx);  /* Keep lockdep happy. */ | 
 | 1170 |  | 
| Paul E. McKenney | 4f89b33 | 2011-12-09 14:43:47 -0800 | [diff] [blame] | 1171 | 	return ACCESS_ONCE(rnp->exp_tasks) != NULL || | 
 | 1172 | 	       ACCESS_ONCE(rnp->boost_tasks) != NULL; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1173 | } | 
 | 1174 |  | 
 | 1175 | /* | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1176 |  * Priority-boosting kthread.  One per leaf rcu_node and one for the | 
 | 1177 |  * root rcu_node. | 
 | 1178 |  */ | 
 | 1179 | static int rcu_boost_kthread(void *arg) | 
 | 1180 | { | 
 | 1181 | 	struct rcu_node *rnp = (struct rcu_node *)arg; | 
 | 1182 | 	int spincnt = 0; | 
 | 1183 | 	int more2boost; | 
 | 1184 |  | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1185 | 	trace_rcu_utilization("Start boost kthread@init"); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1186 | 	for (;;) { | 
| Paul E. McKenney | d71df90 | 2011-03-29 17:48:28 -0700 | [diff] [blame] | 1187 | 		rnp->boost_kthread_status = RCU_KTHREAD_WAITING; | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1188 | 		trace_rcu_utilization("End boost kthread@rcu_wait"); | 
| Peter Zijlstra | 08bca60 | 2011-05-20 16:06:29 -0700 | [diff] [blame] | 1189 | 		rcu_wait(rnp->boost_tasks || rnp->exp_tasks); | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1190 | 		trace_rcu_utilization("Start boost kthread@rcu_wait"); | 
| Paul E. McKenney | d71df90 | 2011-03-29 17:48:28 -0700 | [diff] [blame] | 1191 | 		rnp->boost_kthread_status = RCU_KTHREAD_RUNNING; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1192 | 		more2boost = rcu_boost(rnp); | 
 | 1193 | 		if (more2boost) | 
 | 1194 | 			spincnt++; | 
 | 1195 | 		else | 
 | 1196 | 			spincnt = 0; | 
 | 1197 | 		if (spincnt > 10) { | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1198 | 			rnp->boost_kthread_status = RCU_KTHREAD_YIELDING; | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1199 | 			trace_rcu_utilization("End boost kthread@rcu_yield"); | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1200 | 			schedule_timeout_interruptible(2); | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1201 | 			trace_rcu_utilization("Start boost kthread@rcu_yield"); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1202 | 			spincnt = 0; | 
 | 1203 | 		} | 
 | 1204 | 	} | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1205 | 	/* NOTREACHED */ | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1206 | 	trace_rcu_utilization("End boost kthread@notreached"); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1207 | 	return 0; | 
 | 1208 | } | 
 | 1209 |  | 
 | 1210 | /* | 
 | 1211 |  * Check to see if it is time to start boosting RCU readers that are | 
 | 1212 |  * blocking the current grace period, and, if so, tell the per-rcu_node | 
 | 1213 |  * kthread to start boosting them.  If there is an expedited grace | 
 | 1214 |  * period in progress, it is always time to boost. | 
 | 1215 |  * | 
| Paul E. McKenney | b065a85 | 2012-08-01 15:57:54 -0700 | [diff] [blame] | 1216 |  * The caller must hold rnp->lock, which this function releases. | 
 | 1217 |  * The ->boost_kthread_task is immortal, so we don't need to worry | 
 | 1218 |  * about it going away. | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1219 |  */ | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1220 | static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags) | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1221 | { | 
 | 1222 | 	struct task_struct *t; | 
 | 1223 |  | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1224 | 	if (!rcu_preempt_blocked_readers_cgp(rnp) && rnp->exp_tasks == NULL) { | 
 | 1225 | 		rnp->n_balk_exp_gp_tasks++; | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1226 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1227 | 		return; | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1228 | 	} | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1229 | 	if (rnp->exp_tasks != NULL || | 
 | 1230 | 	    (rnp->gp_tasks != NULL && | 
 | 1231 | 	     rnp->boost_tasks == NULL && | 
 | 1232 | 	     rnp->qsmask == 0 && | 
 | 1233 | 	     ULONG_CMP_GE(jiffies, rnp->boost_time))) { | 
 | 1234 | 		if (rnp->exp_tasks == NULL) | 
 | 1235 | 			rnp->boost_tasks = rnp->gp_tasks; | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1236 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1237 | 		t = rnp->boost_kthread_task; | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1238 | 		if (t) | 
 | 1239 | 			rcu_wake_cond(t, rnp->boost_kthread_status); | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1240 | 	} else { | 
| Paul E. McKenney | 0ea1f2e | 2011-02-22 13:42:43 -0800 | [diff] [blame] | 1241 | 		rcu_initiate_boost_trace(rnp); | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1242 | 		raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
 | 1243 | 	} | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1244 | } | 
 | 1245 |  | 
| Paul E. McKenney | 0f962a5 | 2011-04-14 12:13:53 -0700 | [diff] [blame] | 1246 | /* | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1247 |  * Wake up the per-CPU kthread to invoke RCU callbacks. | 
 | 1248 |  */ | 
 | 1249 | static void invoke_rcu_callbacks_kthread(void) | 
 | 1250 | { | 
 | 1251 | 	unsigned long flags; | 
 | 1252 |  | 
 | 1253 | 	local_irq_save(flags); | 
 | 1254 | 	__this_cpu_write(rcu_cpu_has_work, 1); | 
| Shaohua Li | 1eb5212 | 2011-06-16 16:02:54 -0700 | [diff] [blame] | 1255 | 	if (__this_cpu_read(rcu_cpu_kthread_task) != NULL && | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1256 | 	    current != __this_cpu_read(rcu_cpu_kthread_task)) { | 
 | 1257 | 		rcu_wake_cond(__this_cpu_read(rcu_cpu_kthread_task), | 
 | 1258 | 			      __this_cpu_read(rcu_cpu_kthread_status)); | 
 | 1259 | 	} | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1260 | 	local_irq_restore(flags); | 
 | 1261 | } | 
 | 1262 |  | 
 | 1263 | /* | 
| Paul E. McKenney | dff1672 | 2011-11-29 15:57:13 -0800 | [diff] [blame] | 1264 |  * Is the current CPU running the RCU-callbacks kthread? | 
 | 1265 |  * Caller must have preemption disabled. | 
 | 1266 |  */ | 
 | 1267 | static bool rcu_is_callbacks_kthread(void) | 
 | 1268 | { | 
 | 1269 | 	return __get_cpu_var(rcu_cpu_kthread_task) == current; | 
 | 1270 | } | 
 | 1271 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1272 | #define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000) | 
 | 1273 |  | 
 | 1274 | /* | 
 | 1275 |  * Do priority-boost accounting for the start of a new grace period. | 
 | 1276 |  */ | 
 | 1277 | static void rcu_preempt_boost_start_gp(struct rcu_node *rnp) | 
 | 1278 | { | 
 | 1279 | 	rnp->boost_time = jiffies + RCU_BOOST_DELAY_JIFFIES; | 
 | 1280 | } | 
 | 1281 |  | 
 | 1282 | /* | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1283 |  * Create an RCU-boost kthread for the specified node if one does not | 
 | 1284 |  * already exist.  We only create this kthread for preemptible RCU. | 
 | 1285 |  * Returns zero if all is well, a negated errno otherwise. | 
 | 1286 |  */ | 
 | 1287 | static int __cpuinit rcu_spawn_one_boost_kthread(struct rcu_state *rsp, | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1288 | 						 struct rcu_node *rnp) | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1289 | { | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1290 | 	int rnp_index = rnp - &rsp->node[0]; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1291 | 	unsigned long flags; | 
 | 1292 | 	struct sched_param sp; | 
 | 1293 | 	struct task_struct *t; | 
 | 1294 |  | 
 | 1295 | 	if (&rcu_preempt_state != rsp) | 
 | 1296 | 		return 0; | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1297 |  | 
 | 1298 | 	if (!rcu_scheduler_fully_active || rnp->qsmaskinit == 0) | 
 | 1299 | 		return 0; | 
 | 1300 |  | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1301 | 	rsp->boost = 1; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1302 | 	if (rnp->boost_kthread_task != NULL) | 
 | 1303 | 		return 0; | 
 | 1304 | 	t = kthread_create(rcu_boost_kthread, (void *)rnp, | 
| Mike Galbraith | 5b61b0b | 2011-08-19 11:39:11 -0700 | [diff] [blame] | 1305 | 			   "rcub/%d", rnp_index); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1306 | 	if (IS_ERR(t)) | 
 | 1307 | 		return PTR_ERR(t); | 
 | 1308 | 	raw_spin_lock_irqsave(&rnp->lock, flags); | 
 | 1309 | 	rnp->boost_kthread_task = t; | 
 | 1310 | 	raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Mike Galbraith | 5b61b0b | 2011-08-19 11:39:11 -0700 | [diff] [blame] | 1311 | 	sp.sched_priority = RCU_BOOST_PRIO; | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1312 | 	sched_setscheduler_nocheck(t, SCHED_FIFO, &sp); | 
| Paul E. McKenney | 9a43273 | 2011-05-30 20:38:55 -0700 | [diff] [blame] | 1313 | 	wake_up_process(t); /* get to TASK_INTERRUPTIBLE quickly. */ | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1314 | 	return 0; | 
 | 1315 | } | 
 | 1316 |  | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1317 | static void rcu_kthread_do_work(void) | 
 | 1318 | { | 
 | 1319 | 	rcu_do_batch(&rcu_sched_state, &__get_cpu_var(rcu_sched_data)); | 
 | 1320 | 	rcu_do_batch(&rcu_bh_state, &__get_cpu_var(rcu_bh_data)); | 
 | 1321 | 	rcu_preempt_do_callbacks(); | 
 | 1322 | } | 
 | 1323 |  | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1324 | static void rcu_cpu_kthread_setup(unsigned int cpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1325 | { | 
 | 1326 | 	struct sched_param sp; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1327 |  | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1328 | 	sp.sched_priority = RCU_KTHREAD_PRIO; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1329 | 	sched_setscheduler_nocheck(current, SCHED_FIFO, &sp); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1330 | } | 
 | 1331 |  | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1332 | static void rcu_cpu_kthread_park(unsigned int cpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1333 | { | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1334 | 	per_cpu(rcu_cpu_kthread_status, cpu) = RCU_KTHREAD_OFFCPU; | 
 | 1335 | } | 
 | 1336 |  | 
 | 1337 | static int rcu_cpu_kthread_should_run(unsigned int cpu) | 
 | 1338 | { | 
 | 1339 | 	return __get_cpu_var(rcu_cpu_has_work); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1340 | } | 
 | 1341 |  | 
 | 1342 | /* | 
 | 1343 |  * Per-CPU kernel thread that invokes RCU callbacks.  This replaces the | 
| Paul E. McKenney | e0f2306 | 2011-06-21 01:29:39 -0700 | [diff] [blame] | 1344 |  * RCU softirq used in flavors and configurations of RCU that do not | 
 | 1345 |  * support RCU priority boosting. | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1346 |  */ | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1347 | static void rcu_cpu_kthread(unsigned int cpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1348 | { | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1349 | 	unsigned int *statusp = &__get_cpu_var(rcu_cpu_kthread_status); | 
 | 1350 | 	char work, *workp = &__get_cpu_var(rcu_cpu_has_work); | 
 | 1351 | 	int spincnt; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1352 |  | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1353 | 	for (spincnt = 0; spincnt < 10; spincnt++) { | 
| Paul E. McKenney | 385680a | 2011-06-21 22:43:26 -0700 | [diff] [blame] | 1354 | 		trace_rcu_utilization("Start CPU kthread@rcu_wait"); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1355 | 		local_bh_disable(); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1356 | 		*statusp = RCU_KTHREAD_RUNNING; | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1357 | 		this_cpu_inc(rcu_cpu_kthread_loops); | 
 | 1358 | 		local_irq_disable(); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1359 | 		work = *workp; | 
 | 1360 | 		*workp = 0; | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1361 | 		local_irq_enable(); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1362 | 		if (work) | 
 | 1363 | 			rcu_kthread_do_work(); | 
 | 1364 | 		local_bh_enable(); | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1365 | 		if (*workp == 0) { | 
 | 1366 | 			trace_rcu_utilization("End CPU kthread@rcu_wait"); | 
 | 1367 | 			*statusp = RCU_KTHREAD_WAITING; | 
 | 1368 | 			return; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1369 | 		} | 
 | 1370 | 	} | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1371 | 	*statusp = RCU_KTHREAD_YIELDING; | 
 | 1372 | 	trace_rcu_utilization("Start CPU kthread@rcu_yield"); | 
 | 1373 | 	schedule_timeout_interruptible(2); | 
 | 1374 | 	trace_rcu_utilization("End CPU kthread@rcu_yield"); | 
 | 1375 | 	*statusp = RCU_KTHREAD_WAITING; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1376 | } | 
 | 1377 |  | 
 | 1378 | /* | 
 | 1379 |  * Set the per-rcu_node kthread's affinity to cover all CPUs that are | 
 | 1380 |  * served by the rcu_node in question.  The CPU hotplug lock is still | 
 | 1381 |  * held, so the value of rnp->qsmaskinit will be stable. | 
 | 1382 |  * | 
 | 1383 |  * We don't include outgoingcpu in the affinity set, use -1 if there is | 
 | 1384 |  * no outgoing CPU.  If there are no CPUs left in the affinity set, | 
 | 1385 |  * this function allows the kthread to execute on any CPU. | 
 | 1386 |  */ | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1387 | static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1388 | { | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1389 | 	struct task_struct *t = rnp->boost_kthread_task; | 
 | 1390 | 	unsigned long mask = rnp->qsmaskinit; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1391 | 	cpumask_var_t cm; | 
 | 1392 | 	int cpu; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1393 |  | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1394 | 	if (!t) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1395 | 		return; | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1396 | 	if (!zalloc_cpumask_var(&cm, GFP_KERNEL)) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1397 | 		return; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1398 | 	for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++, mask >>= 1) | 
 | 1399 | 		if ((mask & 0x1) && cpu != outgoingcpu) | 
 | 1400 | 			cpumask_set_cpu(cpu, cm); | 
 | 1401 | 	if (cpumask_weight(cm) == 0) { | 
 | 1402 | 		cpumask_setall(cm); | 
 | 1403 | 		for (cpu = rnp->grplo; cpu <= rnp->grphi; cpu++) | 
 | 1404 | 			cpumask_clear_cpu(cpu, cm); | 
 | 1405 | 		WARN_ON_ONCE(cpumask_weight(cm) == 0); | 
 | 1406 | 	} | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1407 | 	set_cpus_allowed_ptr(t, cm); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1408 | 	free_cpumask_var(cm); | 
 | 1409 | } | 
 | 1410 |  | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1411 | static struct smp_hotplug_thread rcu_cpu_thread_spec = { | 
 | 1412 | 	.store			= &rcu_cpu_kthread_task, | 
 | 1413 | 	.thread_should_run	= rcu_cpu_kthread_should_run, | 
 | 1414 | 	.thread_fn		= rcu_cpu_kthread, | 
 | 1415 | 	.thread_comm		= "rcuc/%u", | 
 | 1416 | 	.setup			= rcu_cpu_kthread_setup, | 
 | 1417 | 	.park			= rcu_cpu_kthread_park, | 
 | 1418 | }; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1419 |  | 
 | 1420 | /* | 
 | 1421 |  * Spawn all kthreads -- called as soon as the scheduler is running. | 
 | 1422 |  */ | 
 | 1423 | static int __init rcu_spawn_kthreads(void) | 
 | 1424 | { | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1425 | 	struct rcu_node *rnp; | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1426 | 	int cpu; | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1427 |  | 
| Paul E. McKenney | b0d3041 | 2011-07-10 15:57:35 -0700 | [diff] [blame] | 1428 | 	rcu_scheduler_fully_active = 1; | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1429 | 	for_each_possible_cpu(cpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1430 | 		per_cpu(rcu_cpu_has_work, cpu) = 0; | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1431 | 	BUG_ON(smpboot_register_percpu_thread(&rcu_cpu_thread_spec)); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1432 | 	rnp = rcu_get_root(rcu_state); | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1433 | 	(void)rcu_spawn_one_boost_kthread(rcu_state, rnp); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1434 | 	if (NUM_RCU_NODES > 1) { | 
 | 1435 | 		rcu_for_each_leaf_node(rcu_state, rnp) | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1436 | 			(void)rcu_spawn_one_boost_kthread(rcu_state, rnp); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1437 | 	} | 
 | 1438 | 	return 0; | 
 | 1439 | } | 
 | 1440 | early_initcall(rcu_spawn_kthreads); | 
 | 1441 |  | 
 | 1442 | static void __cpuinit rcu_prepare_kthreads(int cpu) | 
 | 1443 | { | 
 | 1444 | 	struct rcu_data *rdp = per_cpu_ptr(rcu_state->rda, cpu); | 
 | 1445 | 	struct rcu_node *rnp = rdp->mynode; | 
 | 1446 |  | 
 | 1447 | 	/* Fire up the incoming CPU's kthread and leaf rcu_node kthread. */ | 
| Paul E. McKenney | 62ab707 | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 1448 | 	if (rcu_scheduler_fully_active) | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1449 | 		(void)rcu_spawn_one_boost_kthread(rcu_state, rnp); | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1450 | } | 
 | 1451 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1452 | #else /* #ifdef CONFIG_RCU_BOOST */ | 
 | 1453 |  | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1454 | static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags) | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1455 | { | 
| Paul E. McKenney | 1217ed1 | 2011-05-04 21:43:49 -0700 | [diff] [blame] | 1456 | 	raw_spin_unlock_irqrestore(&rnp->lock, flags); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1457 | } | 
 | 1458 |  | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1459 | static void invoke_rcu_callbacks_kthread(void) | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1460 | { | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1461 | 	WARN_ON_ONCE(1); | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1462 | } | 
 | 1463 |  | 
| Paul E. McKenney | dff1672 | 2011-11-29 15:57:13 -0800 | [diff] [blame] | 1464 | static bool rcu_is_callbacks_kthread(void) | 
 | 1465 | { | 
 | 1466 | 	return false; | 
 | 1467 | } | 
 | 1468 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1469 | static void rcu_preempt_boost_start_gp(struct rcu_node *rnp) | 
 | 1470 | { | 
 | 1471 | } | 
 | 1472 |  | 
| Thomas Gleixner | 5d01bbd | 2012-07-16 10:42:35 +0000 | [diff] [blame] | 1473 | static void rcu_boost_kthread_setaffinity(struct rcu_node *rnp, int outgoingcpu) | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1474 | { | 
 | 1475 | } | 
 | 1476 |  | 
| Paul E. McKenney | b0d3041 | 2011-07-10 15:57:35 -0700 | [diff] [blame] | 1477 | static int __init rcu_scheduler_really_started(void) | 
 | 1478 | { | 
 | 1479 | 	rcu_scheduler_fully_active = 1; | 
 | 1480 | 	return 0; | 
 | 1481 | } | 
 | 1482 | early_initcall(rcu_scheduler_really_started); | 
 | 1483 |  | 
| Paul E. McKenney | f8b7fc6 | 2011-06-16 08:26:32 -0700 | [diff] [blame] | 1484 | static void __cpuinit rcu_prepare_kthreads(int cpu) | 
 | 1485 | { | 
 | 1486 | } | 
 | 1487 |  | 
| Paul E. McKenney | 27f4d28 | 2011-02-07 12:47:15 -0800 | [diff] [blame] | 1488 | #endif /* #else #ifdef CONFIG_RCU_BOOST */ | 
 | 1489 |  | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1490 | #if !defined(CONFIG_RCU_FAST_NO_HZ) | 
 | 1491 |  | 
 | 1492 | /* | 
 | 1493 |  * Check to see if any future RCU-related work will need to be done | 
 | 1494 |  * by the current CPU, even if none need be done immediately, returning | 
 | 1495 |  * 1 if so.  This function is part of the RCU implementation; it is -not- | 
 | 1496 |  * an exported member of the RCU API. | 
 | 1497 |  * | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1498 |  * Because we not have RCU_FAST_NO_HZ, just check whether this CPU needs | 
 | 1499 |  * any flavor of RCU. | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1500 |  */ | 
| Paul E. McKenney | aa9b1630 | 2012-05-10 16:41:44 -0700 | [diff] [blame] | 1501 | int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1502 | { | 
| Paul E. McKenney | aa9b1630 | 2012-05-10 16:41:44 -0700 | [diff] [blame] | 1503 | 	*delta_jiffies = ULONG_MAX; | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1504 | 	return rcu_cpu_has_callbacks(cpu); | 
 | 1505 | } | 
 | 1506 |  | 
 | 1507 | /* | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1508 |  * Because we do not have RCU_FAST_NO_HZ, don't bother initializing for it. | 
 | 1509 |  */ | 
 | 1510 | static void rcu_prepare_for_idle_init(int cpu) | 
 | 1511 | { | 
 | 1512 | } | 
 | 1513 |  | 
 | 1514 | /* | 
 | 1515 |  * Because we do not have RCU_FAST_NO_HZ, don't bother cleaning up | 
 | 1516 |  * after it. | 
 | 1517 |  */ | 
 | 1518 | static void rcu_cleanup_after_idle(int cpu) | 
 | 1519 | { | 
 | 1520 | } | 
 | 1521 |  | 
 | 1522 | /* | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 1523 |  * Do the idle-entry grace-period work, which, because CONFIG_RCU_FAST_NO_HZ=n, | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1524 |  * is nothing. | 
 | 1525 |  */ | 
 | 1526 | static void rcu_prepare_for_idle(int cpu) | 
 | 1527 | { | 
 | 1528 | } | 
 | 1529 |  | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1530 | /* | 
 | 1531 |  * Don't bother keeping a running count of the number of RCU callbacks | 
 | 1532 |  * posted because CONFIG_RCU_FAST_NO_HZ=n. | 
 | 1533 |  */ | 
 | 1534 | static void rcu_idle_count_callbacks_posted(void) | 
 | 1535 | { | 
 | 1536 | } | 
 | 1537 |  | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1538 | #else /* #if !defined(CONFIG_RCU_FAST_NO_HZ) */ | 
 | 1539 |  | 
| Paul E. McKenney | f23f7fa | 2011-11-30 15:41:14 -0800 | [diff] [blame] | 1540 | /* | 
 | 1541 |  * This code is invoked when a CPU goes idle, at which point we want | 
 | 1542 |  * to have the CPU do everything required for RCU so that it can enter | 
 | 1543 |  * the energy-efficient dyntick-idle mode.  This is handled by a | 
 | 1544 |  * state machine implemented by rcu_prepare_for_idle() below. | 
 | 1545 |  * | 
 | 1546 |  * The following three proprocessor symbols control this state machine: | 
 | 1547 |  * | 
 | 1548 |  * RCU_IDLE_FLUSHES gives the maximum number of times that we will attempt | 
 | 1549 |  *	to satisfy RCU.  Beyond this point, it is better to incur a periodic | 
 | 1550 |  *	scheduling-clock interrupt than to loop through the state machine | 
 | 1551 |  *	at full power. | 
 | 1552 |  * RCU_IDLE_OPT_FLUSHES gives the number of RCU_IDLE_FLUSHES that are | 
 | 1553 |  *	optional if RCU does not need anything immediately from this | 
 | 1554 |  *	CPU, even if this CPU still has RCU callbacks queued.  The first | 
 | 1555 |  *	times through the state machine are mandatory: we need to give | 
 | 1556 |  *	the state machine a chance to communicate a quiescent state | 
 | 1557 |  *	to the RCU core. | 
 | 1558 |  * RCU_IDLE_GP_DELAY gives the number of jiffies that a CPU is permitted | 
 | 1559 |  *	to sleep in dyntick-idle mode with RCU callbacks pending.  This | 
 | 1560 |  *	is sized to be roughly one RCU grace period.  Those energy-efficiency | 
 | 1561 |  *	benchmarkers who might otherwise be tempted to set this to a large | 
 | 1562 |  *	number, be warned: Setting RCU_IDLE_GP_DELAY too high can hang your | 
 | 1563 |  *	system.  And if you are -that- concerned about energy efficiency, | 
 | 1564 |  *	just power the system down and be done with it! | 
| Paul E. McKenney | 778d250 | 2012-01-10 14:13:24 -0800 | [diff] [blame] | 1565 |  * RCU_IDLE_LAZY_GP_DELAY gives the number of jiffies that a CPU is | 
 | 1566 |  *	permitted to sleep in dyntick-idle mode with only lazy RCU | 
 | 1567 |  *	callbacks pending.  Setting this too high can OOM your system. | 
| Paul E. McKenney | f23f7fa | 2011-11-30 15:41:14 -0800 | [diff] [blame] | 1568 |  * | 
 | 1569 |  * The values below work well in practice.  If future workloads require | 
 | 1570 |  * adjustment, they can be converted into kernel config parameters, though | 
 | 1571 |  * making the state machine smarter might be a better option. | 
 | 1572 |  */ | 
 | 1573 | #define RCU_IDLE_FLUSHES 5		/* Number of dyntick-idle tries. */ | 
 | 1574 | #define RCU_IDLE_OPT_FLUSHES 3		/* Optional dyntick-idle tries. */ | 
| Paul E. McKenney | e84c48a | 2012-06-04 20:45:10 -0700 | [diff] [blame] | 1575 | #define RCU_IDLE_GP_DELAY 4		/* Roughly one grace period. */ | 
| Paul E. McKenney | 778d250 | 2012-01-10 14:13:24 -0800 | [diff] [blame] | 1576 | #define RCU_IDLE_LAZY_GP_DELAY (6 * HZ)	/* Roughly six seconds. */ | 
| Paul E. McKenney | f23f7fa | 2011-11-30 15:41:14 -0800 | [diff] [blame] | 1577 |  | 
| Paul E. McKenney | 9d2ad24 | 2012-06-24 10:15:02 -0700 | [diff] [blame] | 1578 | extern int tick_nohz_enabled; | 
 | 1579 |  | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1580 | /* | 
| Paul E. McKenney | 486e259 | 2012-01-06 14:11:30 -0800 | [diff] [blame] | 1581 |  * Does the specified flavor of RCU have non-lazy callbacks pending on | 
 | 1582 |  * the specified CPU?  Both RCU flavor and CPU are specified by the | 
 | 1583 |  * rcu_data structure. | 
 | 1584 |  */ | 
 | 1585 | static bool __rcu_cpu_has_nonlazy_callbacks(struct rcu_data *rdp) | 
 | 1586 | { | 
 | 1587 | 	return rdp->qlen != rdp->qlen_lazy; | 
 | 1588 | } | 
 | 1589 |  | 
 | 1590 | #ifdef CONFIG_TREE_PREEMPT_RCU | 
 | 1591 |  | 
 | 1592 | /* | 
 | 1593 |  * Are there non-lazy RCU-preempt callbacks?  (There cannot be if there | 
 | 1594 |  * is no RCU-preempt in the kernel.) | 
 | 1595 |  */ | 
 | 1596 | static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu) | 
 | 1597 | { | 
 | 1598 | 	struct rcu_data *rdp = &per_cpu(rcu_preempt_data, cpu); | 
 | 1599 |  | 
 | 1600 | 	return __rcu_cpu_has_nonlazy_callbacks(rdp); | 
 | 1601 | } | 
 | 1602 |  | 
 | 1603 | #else /* #ifdef CONFIG_TREE_PREEMPT_RCU */ | 
 | 1604 |  | 
 | 1605 | static bool rcu_preempt_cpu_has_nonlazy_callbacks(int cpu) | 
 | 1606 | { | 
 | 1607 | 	return 0; | 
 | 1608 | } | 
 | 1609 |  | 
 | 1610 | #endif /* else #ifdef CONFIG_TREE_PREEMPT_RCU */ | 
 | 1611 |  | 
 | 1612 | /* | 
 | 1613 |  * Does any flavor of RCU have non-lazy callbacks on the specified CPU? | 
 | 1614 |  */ | 
 | 1615 | static bool rcu_cpu_has_nonlazy_callbacks(int cpu) | 
 | 1616 | { | 
 | 1617 | 	return __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_sched_data, cpu)) || | 
 | 1618 | 	       __rcu_cpu_has_nonlazy_callbacks(&per_cpu(rcu_bh_data, cpu)) || | 
 | 1619 | 	       rcu_preempt_cpu_has_nonlazy_callbacks(cpu); | 
 | 1620 | } | 
 | 1621 |  | 
 | 1622 | /* | 
| Paul E. McKenney | aa9b1630 | 2012-05-10 16:41:44 -0700 | [diff] [blame] | 1623 |  * Allow the CPU to enter dyntick-idle mode if either: (1) There are no | 
 | 1624 |  * callbacks on this CPU, (2) this CPU has not yet attempted to enter | 
 | 1625 |  * dyntick-idle mode, or (3) this CPU is in the process of attempting to | 
 | 1626 |  * enter dyntick-idle mode.  Otherwise, if we have recently tried and failed | 
 | 1627 |  * to enter dyntick-idle mode, we refuse to try to enter it.  After all, | 
 | 1628 |  * it is better to incur scheduling-clock interrupts than to spin | 
 | 1629 |  * continuously for the same time duration! | 
 | 1630 |  * | 
 | 1631 |  * The delta_jiffies argument is used to store the time when RCU is | 
 | 1632 |  * going to need the CPU again if it still has callbacks.  The reason | 
 | 1633 |  * for this is that rcu_prepare_for_idle() might need to post a timer, | 
 | 1634 |  * but if so, it will do so after tick_nohz_stop_sched_tick() has set | 
 | 1635 |  * the wakeup time for this CPU.  This means that RCU's timer can be | 
 | 1636 |  * delayed until the wakeup time, which defeats the purpose of posting | 
 | 1637 |  * a timer. | 
 | 1638 |  */ | 
 | 1639 | int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | 
 | 1640 | { | 
 | 1641 | 	struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | 
 | 1642 |  | 
 | 1643 | 	/* Flag a new idle sojourn to the idle-entry state machine. */ | 
 | 1644 | 	rdtp->idle_first_pass = 1; | 
 | 1645 | 	/* If no callbacks, RCU doesn't need the CPU. */ | 
 | 1646 | 	if (!rcu_cpu_has_callbacks(cpu)) { | 
 | 1647 | 		*delta_jiffies = ULONG_MAX; | 
 | 1648 | 		return 0; | 
 | 1649 | 	} | 
 | 1650 | 	if (rdtp->dyntick_holdoff == jiffies) { | 
 | 1651 | 		/* RCU recently tried and failed, so don't try again. */ | 
 | 1652 | 		*delta_jiffies = 1; | 
 | 1653 | 		return 1; | 
 | 1654 | 	} | 
 | 1655 | 	/* Set up for the possibility that RCU will post a timer. */ | 
| Paul E. McKenney | e84c48a | 2012-06-04 20:45:10 -0700 | [diff] [blame] | 1656 | 	if (rcu_cpu_has_nonlazy_callbacks(cpu)) { | 
 | 1657 | 		*delta_jiffies = round_up(RCU_IDLE_GP_DELAY + jiffies, | 
 | 1658 | 					  RCU_IDLE_GP_DELAY) - jiffies; | 
 | 1659 | 	} else { | 
 | 1660 | 		*delta_jiffies = jiffies + RCU_IDLE_LAZY_GP_DELAY; | 
 | 1661 | 		*delta_jiffies = round_jiffies(*delta_jiffies) - jiffies; | 
 | 1662 | 	} | 
| Paul E. McKenney | aa9b1630 | 2012-05-10 16:41:44 -0700 | [diff] [blame] | 1663 | 	return 0; | 
 | 1664 | } | 
 | 1665 |  | 
 | 1666 | /* | 
| Paul E. McKenney | 21e52e1 | 2012-04-30 14:16:19 -0700 | [diff] [blame] | 1667 |  * Handler for smp_call_function_single().  The only point of this | 
 | 1668 |  * handler is to wake the CPU up, so the handler does only tracing. | 
 | 1669 |  */ | 
 | 1670 | void rcu_idle_demigrate(void *unused) | 
 | 1671 | { | 
 | 1672 | 	trace_rcu_prep_idle("Demigrate"); | 
 | 1673 | } | 
 | 1674 |  | 
 | 1675 | /* | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1676 |  * Timer handler used to force CPU to start pushing its remaining RCU | 
 | 1677 |  * callbacks in the case where it entered dyntick-idle mode with callbacks | 
 | 1678 |  * pending.  The hander doesn't really need to do anything because the | 
 | 1679 |  * real work is done upon re-entry to idle, or by the next scheduling-clock | 
 | 1680 |  * interrupt should idle not be re-entered. | 
| Paul E. McKenney | 21e52e1 | 2012-04-30 14:16:19 -0700 | [diff] [blame] | 1681 |  * | 
 | 1682 |  * One special case: the timer gets migrated without awakening the CPU | 
 | 1683 |  * on which the timer was scheduled on.  In this case, we must wake up | 
 | 1684 |  * that CPU.  We do so with smp_call_function_single(). | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1685 |  */ | 
| Paul E. McKenney | 21e52e1 | 2012-04-30 14:16:19 -0700 | [diff] [blame] | 1686 | static void rcu_idle_gp_timer_func(unsigned long cpu_in) | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1687 | { | 
| Paul E. McKenney | 21e52e1 | 2012-04-30 14:16:19 -0700 | [diff] [blame] | 1688 | 	int cpu = (int)cpu_in; | 
 | 1689 |  | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1690 | 	trace_rcu_prep_idle("Timer"); | 
| Paul E. McKenney | 21e52e1 | 2012-04-30 14:16:19 -0700 | [diff] [blame] | 1691 | 	if (cpu != smp_processor_id()) | 
 | 1692 | 		smp_call_function_single(cpu, rcu_idle_demigrate, NULL, 0); | 
 | 1693 | 	else | 
 | 1694 | 		WARN_ON_ONCE(1); /* Getting here can hang the system... */ | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1695 | } | 
 | 1696 |  | 
 | 1697 | /* | 
 | 1698 |  * Initialize the timer used to pull CPUs out of dyntick-idle mode. | 
 | 1699 |  */ | 
 | 1700 | static void rcu_prepare_for_idle_init(int cpu) | 
 | 1701 | { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1702 | 	struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | 
 | 1703 |  | 
 | 1704 | 	rdtp->dyntick_holdoff = jiffies - 1; | 
 | 1705 | 	setup_timer(&rdtp->idle_gp_timer, rcu_idle_gp_timer_func, cpu); | 
 | 1706 | 	rdtp->idle_gp_timer_expires = jiffies - 1; | 
 | 1707 | 	rdtp->idle_first_pass = 1; | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1708 | } | 
 | 1709 |  | 
 | 1710 | /* | 
 | 1711 |  * Clean up for exit from idle.  Because we are exiting from idle, there | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1712 |  * is no longer any point to ->idle_gp_timer, so cancel it.  This will | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1713 |  * do nothing if this timer is not active, so just cancel it unconditionally. | 
 | 1714 |  */ | 
 | 1715 | static void rcu_cleanup_after_idle(int cpu) | 
 | 1716 | { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1717 | 	struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | 
 | 1718 |  | 
 | 1719 | 	del_timer(&rdtp->idle_gp_timer); | 
| Paul E. McKenney | 2fdbb31 | 2012-02-23 15:58:29 -0800 | [diff] [blame] | 1720 | 	trace_rcu_prep_idle("Cleanup after idle"); | 
| Paul E. McKenney | 9d2ad24 | 2012-06-24 10:15:02 -0700 | [diff] [blame] | 1721 | 	rdtp->tick_nohz_enabled_snap = ACCESS_ONCE(tick_nohz_enabled); | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1722 | } | 
 | 1723 |  | 
 | 1724 | /* | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1725 |  * Check to see if any RCU-related work can be done by the current CPU, | 
 | 1726 |  * and if so, schedule a softirq to get it done.  This function is part | 
 | 1727 |  * of the RCU implementation; it is -not- an exported member of the RCU API. | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1728 |  * | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1729 |  * The idea is for the current CPU to clear out all work required by the | 
 | 1730 |  * RCU core for the current grace period, so that this CPU can be permitted | 
 | 1731 |  * to enter dyntick-idle mode.  In some cases, it will need to be awakened | 
 | 1732 |  * at the end of the grace period by whatever CPU ends the grace period. | 
 | 1733 |  * This allows CPUs to go dyntick-idle more quickly, and to reduce the | 
 | 1734 |  * number of wakeups by a modest integer factor. | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1735 |  * | 
 | 1736 |  * Because it is not legal to invoke rcu_process_callbacks() with irqs | 
 | 1737 |  * disabled, we do one pass of force_quiescent_state(), then do a | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1738 |  * invoke_rcu_core() to cause rcu_process_callbacks() to be invoked | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1739 |  * later.  The ->dyntick_drain field controls the sequencing. | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1740 |  * | 
 | 1741 |  * The caller must have disabled interrupts. | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1742 |  */ | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1743 | static void rcu_prepare_for_idle(int cpu) | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1744 | { | 
| Paul E. McKenney | f511fc6 | 2012-03-15 12:16:26 -0700 | [diff] [blame] | 1745 | 	struct timer_list *tp; | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1746 | 	struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | 
| Paul E. McKenney | 9d2ad24 | 2012-06-24 10:15:02 -0700 | [diff] [blame] | 1747 | 	int tne; | 
 | 1748 |  | 
 | 1749 | 	/* Handle nohz enablement switches conservatively. */ | 
 | 1750 | 	tne = ACCESS_ONCE(tick_nohz_enabled); | 
 | 1751 | 	if (tne != rdtp->tick_nohz_enabled_snap) { | 
 | 1752 | 		if (rcu_cpu_has_callbacks(cpu)) | 
 | 1753 | 			invoke_rcu_core(); /* force nohz to see update. */ | 
 | 1754 | 		rdtp->tick_nohz_enabled_snap = tne; | 
 | 1755 | 		return; | 
 | 1756 | 	} | 
 | 1757 | 	if (!tne) | 
 | 1758 | 		return; | 
| Paul E. McKenney | f511fc6 | 2012-03-15 12:16:26 -0700 | [diff] [blame] | 1759 |  | 
| Paul E. McKenney | 9a0c6fe | 2012-06-28 12:33:51 -0700 | [diff] [blame] | 1760 | 	/* Adaptive-tick mode, where usermode execution is idle to RCU. */ | 
 | 1761 | 	if (!is_idle_task(current)) { | 
 | 1762 | 		rdtp->dyntick_holdoff = jiffies - 1; | 
 | 1763 | 		if (rcu_cpu_has_nonlazy_callbacks(cpu)) { | 
 | 1764 | 			trace_rcu_prep_idle("User dyntick with callbacks"); | 
 | 1765 | 			rdtp->idle_gp_timer_expires = | 
 | 1766 | 				round_up(jiffies + RCU_IDLE_GP_DELAY, | 
 | 1767 | 					 RCU_IDLE_GP_DELAY); | 
 | 1768 | 		} else if (rcu_cpu_has_callbacks(cpu)) { | 
 | 1769 | 			rdtp->idle_gp_timer_expires = | 
 | 1770 | 				round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY); | 
 | 1771 | 			trace_rcu_prep_idle("User dyntick with lazy callbacks"); | 
 | 1772 | 		} else { | 
 | 1773 | 			return; | 
 | 1774 | 		} | 
 | 1775 | 		tp = &rdtp->idle_gp_timer; | 
 | 1776 | 		mod_timer_pinned(tp, rdtp->idle_gp_timer_expires); | 
 | 1777 | 		return; | 
 | 1778 | 	} | 
 | 1779 |  | 
| Paul E. McKenney | 3084f2f | 2011-11-22 17:07:11 -0800 | [diff] [blame] | 1780 | 	/* | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1781 | 	 * If this is an idle re-entry, for example, due to use of | 
 | 1782 | 	 * RCU_NONIDLE() or the new idle-loop tracing API within the idle | 
 | 1783 | 	 * loop, then don't take any state-machine actions, unless the | 
 | 1784 | 	 * momentary exit from idle queued additional non-lazy callbacks. | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1785 | 	 * Instead, repost the ->idle_gp_timer if this CPU has callbacks | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1786 | 	 * pending. | 
 | 1787 | 	 */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1788 | 	if (!rdtp->idle_first_pass && | 
 | 1789 | 	    (rdtp->nonlazy_posted == rdtp->nonlazy_posted_snap)) { | 
| Paul E. McKenney | f511fc6 | 2012-03-15 12:16:26 -0700 | [diff] [blame] | 1790 | 		if (rcu_cpu_has_callbacks(cpu)) { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1791 | 			tp = &rdtp->idle_gp_timer; | 
 | 1792 | 			mod_timer_pinned(tp, rdtp->idle_gp_timer_expires); | 
| Paul E. McKenney | f511fc6 | 2012-03-15 12:16:26 -0700 | [diff] [blame] | 1793 | 		} | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1794 | 		return; | 
 | 1795 | 	} | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1796 | 	rdtp->idle_first_pass = 0; | 
 | 1797 | 	rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted - 1; | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1798 |  | 
 | 1799 | 	/* | 
| Paul E. McKenney | f535a60 | 2011-11-22 20:43:02 -0800 | [diff] [blame] | 1800 | 	 * If there are no callbacks on this CPU, enter dyntick-idle mode. | 
 | 1801 | 	 * Also reset state to avoid prejudicing later attempts. | 
| Paul E. McKenney | 3084f2f | 2011-11-22 17:07:11 -0800 | [diff] [blame] | 1802 | 	 */ | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1803 | 	if (!rcu_cpu_has_callbacks(cpu)) { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1804 | 		rdtp->dyntick_holdoff = jiffies - 1; | 
 | 1805 | 		rdtp->dyntick_drain = 0; | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1806 | 		trace_rcu_prep_idle("No callbacks"); | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1807 | 		return; | 
| Paul E. McKenney | 77e38ed | 2010-04-25 21:04:29 -0700 | [diff] [blame] | 1808 | 	} | 
| Paul E. McKenney | 3084f2f | 2011-11-22 17:07:11 -0800 | [diff] [blame] | 1809 |  | 
 | 1810 | 	/* | 
 | 1811 | 	 * If in holdoff mode, just return.  We will presumably have | 
 | 1812 | 	 * refrained from disabling the scheduling-clock tick. | 
 | 1813 | 	 */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1814 | 	if (rdtp->dyntick_holdoff == jiffies) { | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1815 | 		trace_rcu_prep_idle("In holdoff"); | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1816 | 		return; | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1817 | 	} | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1818 |  | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1819 | 	/* Check and update the ->dyntick_drain sequencing. */ | 
 | 1820 | 	if (rdtp->dyntick_drain <= 0) { | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1821 | 		/* First time through, initialize the counter. */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1822 | 		rdtp->dyntick_drain = RCU_IDLE_FLUSHES; | 
 | 1823 | 	} else if (rdtp->dyntick_drain <= RCU_IDLE_OPT_FLUSHES && | 
| Paul E. McKenney | c3ce910 | 2012-02-14 10:12:54 -0800 | [diff] [blame] | 1824 | 		   !rcu_pending(cpu) && | 
 | 1825 | 		   !local_softirq_pending()) { | 
| Paul E. McKenney | 7cb9249 | 2011-11-28 12:28:34 -0800 | [diff] [blame] | 1826 | 		/* Can we go dyntick-idle despite still having callbacks? */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1827 | 		rdtp->dyntick_drain = 0; | 
 | 1828 | 		rdtp->dyntick_holdoff = jiffies; | 
| Paul E. McKenney | fd4b352 | 2012-05-05 19:10:35 -0700 | [diff] [blame] | 1829 | 		if (rcu_cpu_has_nonlazy_callbacks(cpu)) { | 
 | 1830 | 			trace_rcu_prep_idle("Dyntick with callbacks"); | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1831 | 			rdtp->idle_gp_timer_expires = | 
| Paul E. McKenney | e84c48a | 2012-06-04 20:45:10 -0700 | [diff] [blame] | 1832 | 				round_up(jiffies + RCU_IDLE_GP_DELAY, | 
 | 1833 | 					 RCU_IDLE_GP_DELAY); | 
| Paul E. McKenney | fd4b352 | 2012-05-05 19:10:35 -0700 | [diff] [blame] | 1834 | 		} else { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1835 | 			rdtp->idle_gp_timer_expires = | 
| Paul E. McKenney | e84c48a | 2012-06-04 20:45:10 -0700 | [diff] [blame] | 1836 | 				round_jiffies(jiffies + RCU_IDLE_LAZY_GP_DELAY); | 
| Paul E. McKenney | fd4b352 | 2012-05-05 19:10:35 -0700 | [diff] [blame] | 1837 | 			trace_rcu_prep_idle("Dyntick with lazy callbacks"); | 
 | 1838 | 		} | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1839 | 		tp = &rdtp->idle_gp_timer; | 
 | 1840 | 		mod_timer_pinned(tp, rdtp->idle_gp_timer_expires); | 
 | 1841 | 		rdtp->nonlazy_posted_snap = rdtp->nonlazy_posted; | 
| Paul E. McKenney | f23f7fa | 2011-11-30 15:41:14 -0800 | [diff] [blame] | 1842 | 		return; /* Nothing more to do immediately. */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1843 | 	} else if (--(rdtp->dyntick_drain) <= 0) { | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1844 | 		/* We have hit the limit, so time to give up. */ | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1845 | 		rdtp->dyntick_holdoff = jiffies; | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1846 | 		trace_rcu_prep_idle("Begin holdoff"); | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1847 | 		invoke_rcu_core();  /* Force the CPU out of dyntick-idle. */ | 
 | 1848 | 		return; | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1849 | 	} | 
 | 1850 |  | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1851 | 	/* | 
 | 1852 | 	 * Do one step of pushing the remaining RCU callbacks through | 
 | 1853 | 	 * the RCU core state machine. | 
 | 1854 | 	 */ | 
 | 1855 | #ifdef CONFIG_TREE_PREEMPT_RCU | 
 | 1856 | 	if (per_cpu(rcu_preempt_data, cpu).nxtlist) { | 
 | 1857 | 		rcu_preempt_qs(cpu); | 
| Paul E. McKenney | 4cdfc17 | 2012-06-22 17:06:26 -0700 | [diff] [blame] | 1858 | 		force_quiescent_state(&rcu_preempt_state); | 
| Paul E. McKenney | aea1b35 | 2011-11-02 06:54:54 -0700 | [diff] [blame] | 1859 | 	} | 
 | 1860 | #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */ | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1861 | 	if (per_cpu(rcu_sched_data, cpu).nxtlist) { | 
 | 1862 | 		rcu_sched_qs(cpu); | 
| Paul E. McKenney | 4cdfc17 | 2012-06-22 17:06:26 -0700 | [diff] [blame] | 1863 | 		force_quiescent_state(&rcu_sched_state); | 
| Paul E. McKenney | a47cd88 | 2010-02-26 16:38:56 -0800 | [diff] [blame] | 1864 | 	} | 
 | 1865 | 	if (per_cpu(rcu_bh_data, cpu).nxtlist) { | 
 | 1866 | 		rcu_bh_qs(cpu); | 
| Paul E. McKenney | 4cdfc17 | 2012-06-22 17:06:26 -0700 | [diff] [blame] | 1867 | 		force_quiescent_state(&rcu_bh_state); | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1868 | 	} | 
 | 1869 |  | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1870 | 	/* | 
 | 1871 | 	 * If RCU callbacks are still pending, RCU still needs this CPU. | 
 | 1872 | 	 * So try forcing the callbacks through the grace period. | 
 | 1873 | 	 */ | 
| Paul E. McKenney | 3ad0dec | 2011-11-22 21:08:13 -0800 | [diff] [blame] | 1874 | 	if (rcu_cpu_has_callbacks(cpu)) { | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1875 | 		trace_rcu_prep_idle("More callbacks"); | 
| Paul E. McKenney | a46e089 | 2011-06-15 15:47:09 -0700 | [diff] [blame] | 1876 | 		invoke_rcu_core(); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 1877 | 	} else { | 
| Paul E. McKenney | 433cddd | 2011-11-22 14:58:03 -0800 | [diff] [blame] | 1878 | 		trace_rcu_prep_idle("Callbacks drained"); | 
| Paul E. McKenney | c701d5d | 2012-06-28 08:08:25 -0700 | [diff] [blame] | 1879 | 	} | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1880 | } | 
 | 1881 |  | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1882 | /* | 
| Paul E. McKenney | 98248a0 | 2012-05-03 15:38:10 -0700 | [diff] [blame] | 1883 |  * Keep a running count of the number of non-lazy callbacks posted | 
 | 1884 |  * on this CPU.  This running counter (which is never decremented) allows | 
 | 1885 |  * rcu_prepare_for_idle() to detect when something out of the idle loop | 
 | 1886 |  * posts a callback, even if an equal number of callbacks are invoked. | 
 | 1887 |  * Of course, callbacks should only be posted from within a trace event | 
 | 1888 |  * designed to be called from idle or from within RCU_NONIDLE(). | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1889 |  */ | 
 | 1890 | static void rcu_idle_count_callbacks_posted(void) | 
 | 1891 | { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1892 | 	__this_cpu_add(rcu_dynticks.nonlazy_posted, 1); | 
| Paul E. McKenney | c57afe8 | 2012-02-28 11:02:21 -0800 | [diff] [blame] | 1893 | } | 
 | 1894 |  | 
| Paul E. McKenney | b626c1b | 2012-06-11 17:39:43 -0700 | [diff] [blame] | 1895 | /* | 
 | 1896 |  * Data for flushing lazy RCU callbacks at OOM time. | 
 | 1897 |  */ | 
 | 1898 | static atomic_t oom_callback_count; | 
 | 1899 | static DECLARE_WAIT_QUEUE_HEAD(oom_callback_wq); | 
 | 1900 |  | 
 | 1901 | /* | 
 | 1902 |  * RCU OOM callback -- decrement the outstanding count and deliver the | 
 | 1903 |  * wake-up if we are the last one. | 
 | 1904 |  */ | 
 | 1905 | static void rcu_oom_callback(struct rcu_head *rhp) | 
 | 1906 | { | 
 | 1907 | 	if (atomic_dec_and_test(&oom_callback_count)) | 
 | 1908 | 		wake_up(&oom_callback_wq); | 
 | 1909 | } | 
 | 1910 |  | 
 | 1911 | /* | 
 | 1912 |  * Post an rcu_oom_notify callback on the current CPU if it has at | 
 | 1913 |  * least one lazy callback.  This will unnecessarily post callbacks | 
 | 1914 |  * to CPUs that already have a non-lazy callback at the end of their | 
 | 1915 |  * callback list, but this is an infrequent operation, so accept some | 
 | 1916 |  * extra overhead to keep things simple. | 
 | 1917 |  */ | 
 | 1918 | static void rcu_oom_notify_cpu(void *unused) | 
 | 1919 | { | 
 | 1920 | 	struct rcu_state *rsp; | 
 | 1921 | 	struct rcu_data *rdp; | 
 | 1922 |  | 
 | 1923 | 	for_each_rcu_flavor(rsp) { | 
 | 1924 | 		rdp = __this_cpu_ptr(rsp->rda); | 
 | 1925 | 		if (rdp->qlen_lazy != 0) { | 
 | 1926 | 			atomic_inc(&oom_callback_count); | 
 | 1927 | 			rsp->call(&rdp->oom_head, rcu_oom_callback); | 
 | 1928 | 		} | 
 | 1929 | 	} | 
 | 1930 | } | 
 | 1931 |  | 
 | 1932 | /* | 
 | 1933 |  * If low on memory, ensure that each CPU has a non-lazy callback. | 
 | 1934 |  * This will wake up CPUs that have only lazy callbacks, in turn | 
 | 1935 |  * ensuring that they free up the corresponding memory in a timely manner. | 
 | 1936 |  * Because an uncertain amount of memory will be freed in some uncertain | 
 | 1937 |  * timeframe, we do not claim to have freed anything. | 
 | 1938 |  */ | 
 | 1939 | static int rcu_oom_notify(struct notifier_block *self, | 
 | 1940 | 			  unsigned long notused, void *nfreed) | 
 | 1941 | { | 
 | 1942 | 	int cpu; | 
 | 1943 |  | 
 | 1944 | 	/* Wait for callbacks from earlier instance to complete. */ | 
 | 1945 | 	wait_event(oom_callback_wq, atomic_read(&oom_callback_count) == 0); | 
 | 1946 |  | 
 | 1947 | 	/* | 
 | 1948 | 	 * Prevent premature wakeup: ensure that all increments happen | 
 | 1949 | 	 * before there is a chance of the counter reaching zero. | 
 | 1950 | 	 */ | 
 | 1951 | 	atomic_set(&oom_callback_count, 1); | 
 | 1952 |  | 
 | 1953 | 	get_online_cpus(); | 
 | 1954 | 	for_each_online_cpu(cpu) { | 
 | 1955 | 		smp_call_function_single(cpu, rcu_oom_notify_cpu, NULL, 1); | 
 | 1956 | 		cond_resched(); | 
 | 1957 | 	} | 
 | 1958 | 	put_online_cpus(); | 
 | 1959 |  | 
 | 1960 | 	/* Unconditionally decrement: no need to wake ourselves up. */ | 
 | 1961 | 	atomic_dec(&oom_callback_count); | 
 | 1962 |  | 
 | 1963 | 	return NOTIFY_OK; | 
 | 1964 | } | 
 | 1965 |  | 
 | 1966 | static struct notifier_block rcu_oom_nb = { | 
 | 1967 | 	.notifier_call = rcu_oom_notify | 
 | 1968 | }; | 
 | 1969 |  | 
 | 1970 | static int __init rcu_register_oom_notifier(void) | 
 | 1971 | { | 
 | 1972 | 	register_oom_notifier(&rcu_oom_nb); | 
 | 1973 | 	return 0; | 
 | 1974 | } | 
 | 1975 | early_initcall(rcu_register_oom_notifier); | 
 | 1976 |  | 
| Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 1977 | #endif /* #else #if !defined(CONFIG_RCU_FAST_NO_HZ) */ | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 1978 |  | 
 | 1979 | #ifdef CONFIG_RCU_CPU_STALL_INFO | 
 | 1980 |  | 
 | 1981 | #ifdef CONFIG_RCU_FAST_NO_HZ | 
 | 1982 |  | 
 | 1983 | static void print_cpu_stall_fast_no_hz(char *cp, int cpu) | 
 | 1984 | { | 
| Paul E. McKenney | 5955f7e | 2012-05-09 12:07:05 -0700 | [diff] [blame] | 1985 | 	struct rcu_dynticks *rdtp = &per_cpu(rcu_dynticks, cpu); | 
 | 1986 | 	struct timer_list *tltp = &rdtp->idle_gp_timer; | 
| Paul E. McKenney | 86f343b | 2012-09-21 10:41:50 -0700 | [diff] [blame] | 1987 | 	char c; | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 1988 |  | 
| Paul E. McKenney | 86f343b | 2012-09-21 10:41:50 -0700 | [diff] [blame] | 1989 | 	c = rdtp->dyntick_holdoff == jiffies ? 'H' : '.'; | 
 | 1990 | 	if (timer_pending(tltp)) | 
 | 1991 | 		sprintf(cp, "drain=%d %c timer=%lu", | 
 | 1992 | 			rdtp->dyntick_drain, c, tltp->expires - jiffies); | 
 | 1993 | 	else | 
 | 1994 | 		sprintf(cp, "drain=%d %c timer not pending", | 
 | 1995 | 			rdtp->dyntick_drain, c); | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 1996 | } | 
 | 1997 |  | 
 | 1998 | #else /* #ifdef CONFIG_RCU_FAST_NO_HZ */ | 
 | 1999 |  | 
 | 2000 | static void print_cpu_stall_fast_no_hz(char *cp, int cpu) | 
 | 2001 | { | 
| Carsten Emde | 1c17e4d | 2012-06-19 10:43:16 +0200 | [diff] [blame] | 2002 | 	*cp = '\0'; | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 2003 | } | 
 | 2004 |  | 
 | 2005 | #endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */ | 
 | 2006 |  | 
 | 2007 | /* Initiate the stall-info list. */ | 
 | 2008 | static void print_cpu_stall_info_begin(void) | 
 | 2009 | { | 
 | 2010 | 	printk(KERN_CONT "\n"); | 
 | 2011 | } | 
 | 2012 |  | 
 | 2013 | /* | 
 | 2014 |  * Print out diagnostic information for the specified stalled CPU. | 
 | 2015 |  * | 
 | 2016 |  * If the specified CPU is aware of the current RCU grace period | 
 | 2017 |  * (flavor specified by rsp), then print the number of scheduling | 
 | 2018 |  * clock interrupts the CPU has taken during the time that it has | 
 | 2019 |  * been aware.  Otherwise, print the number of RCU grace periods | 
 | 2020 |  * that this CPU is ignorant of, for example, "1" if the CPU was | 
 | 2021 |  * aware of the previous grace period. | 
 | 2022 |  * | 
 | 2023 |  * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info. | 
 | 2024 |  */ | 
 | 2025 | static void print_cpu_stall_info(struct rcu_state *rsp, int cpu) | 
 | 2026 | { | 
 | 2027 | 	char fast_no_hz[72]; | 
 | 2028 | 	struct rcu_data *rdp = per_cpu_ptr(rsp->rda, cpu); | 
 | 2029 | 	struct rcu_dynticks *rdtp = rdp->dynticks; | 
 | 2030 | 	char *ticks_title; | 
 | 2031 | 	unsigned long ticks_value; | 
 | 2032 |  | 
 | 2033 | 	if (rsp->gpnum == rdp->gpnum) { | 
 | 2034 | 		ticks_title = "ticks this GP"; | 
 | 2035 | 		ticks_value = rdp->ticks_this_gp; | 
 | 2036 | 	} else { | 
 | 2037 | 		ticks_title = "GPs behind"; | 
 | 2038 | 		ticks_value = rsp->gpnum - rdp->gpnum; | 
 | 2039 | 	} | 
 | 2040 | 	print_cpu_stall_fast_no_hz(fast_no_hz, cpu); | 
 | 2041 | 	printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n", | 
 | 2042 | 	       cpu, ticks_value, ticks_title, | 
 | 2043 | 	       atomic_read(&rdtp->dynticks) & 0xfff, | 
 | 2044 | 	       rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting, | 
 | 2045 | 	       fast_no_hz); | 
 | 2046 | } | 
 | 2047 |  | 
 | 2048 | /* Terminate the stall-info list. */ | 
 | 2049 | static void print_cpu_stall_info_end(void) | 
 | 2050 | { | 
 | 2051 | 	printk(KERN_ERR "\t"); | 
 | 2052 | } | 
 | 2053 |  | 
 | 2054 | /* Zero ->ticks_this_gp for all flavors of RCU. */ | 
 | 2055 | static void zero_cpu_stall_ticks(struct rcu_data *rdp) | 
 | 2056 | { | 
 | 2057 | 	rdp->ticks_this_gp = 0; | 
 | 2058 | } | 
 | 2059 |  | 
 | 2060 | /* Increment ->ticks_this_gp for all flavors of RCU. */ | 
 | 2061 | static void increment_cpu_stall_ticks(void) | 
 | 2062 | { | 
| Paul E. McKenney | 115f7a7 | 2012-08-10 13:55:03 -0700 | [diff] [blame] | 2063 | 	struct rcu_state *rsp; | 
 | 2064 |  | 
 | 2065 | 	for_each_rcu_flavor(rsp) | 
 | 2066 | 		__this_cpu_ptr(rsp->rda)->ticks_this_gp++; | 
| Paul E. McKenney | a858af2 | 2012-01-16 13:29:10 -0800 | [diff] [blame] | 2067 | } | 
 | 2068 |  | 
 | 2069 | #else /* #ifdef CONFIG_RCU_CPU_STALL_INFO */ | 
 | 2070 |  | 
 | 2071 | static void print_cpu_stall_info_begin(void) | 
 | 2072 | { | 
 | 2073 | 	printk(KERN_CONT " {"); | 
 | 2074 | } | 
 | 2075 |  | 
 | 2076 | static void print_cpu_stall_info(struct rcu_state *rsp, int cpu) | 
 | 2077 | { | 
 | 2078 | 	printk(KERN_CONT " %d", cpu); | 
 | 2079 | } | 
 | 2080 |  | 
 | 2081 | static void print_cpu_stall_info_end(void) | 
 | 2082 | { | 
 | 2083 | 	printk(KERN_CONT "} "); | 
 | 2084 | } | 
 | 2085 |  | 
 | 2086 | static void zero_cpu_stall_ticks(struct rcu_data *rdp) | 
 | 2087 | { | 
 | 2088 | } | 
 | 2089 |  | 
 | 2090 | static void increment_cpu_stall_ticks(void) | 
 | 2091 | { | 
 | 2092 | } | 
 | 2093 |  | 
 | 2094 | #endif /* #else #ifdef CONFIG_RCU_CPU_STALL_INFO */ |