| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Read-Copy Update mechanism for mutual exclusion | 
 | 3 |  * | 
 | 4 |  * This program is free software; you can redistribute it and/or modify | 
 | 5 |  * it under the terms of the GNU General Public License as published by | 
 | 6 |  * the Free Software Foundation; either version 2 of the License, or | 
 | 7 |  * (at your option) any later version. | 
 | 8 |  * | 
 | 9 |  * This program is distributed in the hope that it will be useful, | 
 | 10 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 11 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 12 |  * GNU General Public License for more details. | 
 | 13 |  * | 
 | 14 |  * You should have received a copy of the GNU General Public License | 
 | 15 |  * along with this program; if not, write to the Free Software | 
 | 16 |  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 
 | 17 |  * | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 18 |  * Copyright IBM Corporation, 2001 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  * | 
 | 20 |  * Authors: Dipankar Sarma <dipankar@in.ibm.com> | 
 | 21 |  *	    Manfred Spraul <manfred@colorfullife.com> | 
| Paul E. McKenney | a71fca5 | 2009-09-18 10:28:19 -0700 | [diff] [blame] | 22 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  * Based on the original work by Paul McKenney <paulmck@us.ibm.com> | 
 | 24 |  * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen. | 
 | 25 |  * Papers: | 
 | 26 |  * http://www.rdrop.com/users/paulmck/paper/rclockpdcsproof.pdf | 
 | 27 |  * http://lse.sourceforge.net/locking/rclock_OLS.2001.05.01c.sc.pdf (OLS2001) | 
 | 28 |  * | 
 | 29 |  * For detailed explanation of Read-Copy Update mechanism see - | 
| Paul E. McKenney | a71fca5 | 2009-09-18 10:28:19 -0700 | [diff] [blame] | 30 |  *		http://lse.sourceforge.net/locking/rcupdate.html | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 |  * | 
 | 32 |  */ | 
 | 33 | #include <linux/types.h> | 
 | 34 | #include <linux/kernel.h> | 
 | 35 | #include <linux/init.h> | 
 | 36 | #include <linux/spinlock.h> | 
 | 37 | #include <linux/smp.h> | 
 | 38 | #include <linux/interrupt.h> | 
 | 39 | #include <linux/sched.h> | 
 | 40 | #include <asm/atomic.h> | 
 | 41 | #include <linux/bitops.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/percpu.h> | 
 | 43 | #include <linux/notifier.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/cpu.h> | 
| Ingo Molnar | 9331b31 | 2006-03-23 03:00:19 -0800 | [diff] [blame] | 45 | #include <linux/mutex.h> | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 46 | #include <linux/module.h> | 
| Paul E. McKenney | d9f1bb6 | 2010-02-25 14:06:47 -0800 | [diff] [blame] | 47 | #include <linux/kernel_stat.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  | 
| Paul E. McKenney | 162cc27 | 2009-09-23 16:18:13 -0700 | [diff] [blame] | 49 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 
 | 50 | static struct lock_class_key rcu_lock_key; | 
 | 51 | struct lockdep_map rcu_lock_map = | 
 | 52 | 	STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key); | 
 | 53 | EXPORT_SYMBOL_GPL(rcu_lock_map); | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 54 |  | 
 | 55 | static struct lock_class_key rcu_bh_lock_key; | 
 | 56 | struct lockdep_map rcu_bh_lock_map = | 
 | 57 | 	STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_bh", &rcu_bh_lock_key); | 
 | 58 | EXPORT_SYMBOL_GPL(rcu_bh_lock_map); | 
 | 59 |  | 
 | 60 | static struct lock_class_key rcu_sched_lock_key; | 
 | 61 | struct lockdep_map rcu_sched_lock_map = | 
 | 62 | 	STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_sched", &rcu_sched_lock_key); | 
 | 63 | EXPORT_SYMBOL_GPL(rcu_sched_lock_map); | 
| Paul E. McKenney | 162cc27 | 2009-09-23 16:18:13 -0700 | [diff] [blame] | 64 | #endif | 
 | 65 |  | 
| Paul E. McKenney | d9f1bb6 | 2010-02-25 14:06:47 -0800 | [diff] [blame] | 66 | int rcu_scheduler_active __read_mostly; | 
| Paul E. McKenney | f5f6540 | 2010-02-25 19:02:30 -0800 | [diff] [blame] | 67 | EXPORT_SYMBOL_GPL(rcu_scheduler_active); | 
| Paul E. McKenney | d9f1bb6 | 2010-02-25 14:06:47 -0800 | [diff] [blame] | 68 |  | 
 | 69 | /* | 
 | 70 |  * This function is invoked towards the end of the scheduler's initialization | 
 | 71 |  * process.  Before this is called, the idle task might contain | 
 | 72 |  * RCU read-side critical sections (during which time, this idle | 
 | 73 |  * task is booting the system).  After this function is called, the | 
 | 74 |  * idle tasks are prohibited from containing RCU read-side critical | 
 | 75 |  * sections. | 
 | 76 |  */ | 
 | 77 | void rcu_scheduler_starting(void) | 
 | 78 | { | 
 | 79 | 	WARN_ON(num_online_cpus() != 1); | 
 | 80 | 	WARN_ON(nr_context_switches() > 0); | 
 | 81 | 	rcu_scheduler_active = 1; | 
 | 82 | } | 
 | 83 |  | 
| Paul E. McKenney | fbf6bfc | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 84 | /* | 
 | 85 |  * Awaken the corresponding synchronize_rcu() instance now that a | 
 | 86 |  * grace period has elapsed. | 
 | 87 |  */ | 
| Paul E. McKenney | 4446a36 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 88 | void wakeme_after_rcu(struct rcu_head  *head) | 
| Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 89 | { | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 90 | 	struct rcu_synchronize *rcu; | 
 | 91 |  | 
 | 92 | 	rcu = container_of(head, struct rcu_synchronize, head); | 
 | 93 | 	complete(&rcu->completion); | 
| Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 94 | } |