blob: a0852d0d915b741e593f0e460f17f91c0c63611a [file] [log] [blame]
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001/*
2 * Read-Copy Update mechanism for mutual exclusion (tree-based version)
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 *
18 * Copyright IBM Corporation, 2008
19 *
20 * Author: Dipankar Sarma <dipankar@in.ibm.com>
21 * Paul E. McKenney <paulmck@linux.vnet.ibm.com> Hierarchical algorithm
22 *
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 *
26 * For detailed explanation of Read-Copy Update mechanism see -
27 * Documentation/RCU
28 */
29
30#ifndef __LINUX_RCUTREE_H
31#define __LINUX_RCUTREE_H
32
Paul E. McKenneyd6714c22009-08-22 13:56:46 -070033extern void rcu_sched_qs(int cpu);
34extern void rcu_bh_qs(int cpu);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010035
36extern int rcu_pending(int cpu);
37extern int rcu_needs_cpu(int cpu);
38
39#ifdef CONFIG_DEBUG_LOCK_ALLOC
40extern struct lockdep_map rcu_lock_map;
41# define rcu_read_acquire() \
42 lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
43# define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_)
44#else
45# define rcu_read_acquire() do { } while (0)
46# define rcu_read_release() do { } while (0)
47#endif
48
49static inline void __rcu_read_lock(void)
50{
51 preempt_disable();
52 __acquire(RCU);
53 rcu_read_acquire();
54}
55static inline void __rcu_read_unlock(void)
56{
57 rcu_read_release();
58 __release(RCU);
59 preempt_enable();
60}
61static inline void __rcu_read_lock_bh(void)
62{
63 local_bh_disable();
64 __acquire(RCU_BH);
65 rcu_read_acquire();
66}
67static inline void __rcu_read_unlock_bh(void)
68{
69 rcu_read_release();
70 __release(RCU_BH);
71 local_bh_enable();
72}
73
74#define __synchronize_sched() synchronize_rcu()
75
Paul E. McKenneyd6714c22009-08-22 13:56:46 -070076extern void call_rcu_sched(struct rcu_head *head,
77 void (*func)(struct rcu_head *rcu));
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010078
Paul E. McKenney03b042b2009-06-25 09:08:16 -070079static inline void synchronize_rcu_expedited(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010080{
Paul E. McKenney03b042b2009-06-25 09:08:16 -070081 synchronize_sched_expedited();
82}
83
84static inline void synchronize_rcu_bh_expedited(void)
85{
86 synchronize_sched_expedited();
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010087}
88
89extern void __rcu_init(void);
90extern void rcu_check_callbacks(int cpu, int user);
91extern void rcu_restart_cpu(int cpu);
92
93extern long rcu_batches_completed(void);
94extern long rcu_batches_completed_bh(void);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -070095extern long rcu_batches_completed_sched(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010096
Paul E. McKenney03b042b2009-06-25 09:08:16 -070097static inline void rcu_init_sched(void)
98{
99}
100
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100101#ifdef CONFIG_NO_HZ
102void rcu_enter_nohz(void);
103void rcu_exit_nohz(void);
104#else /* CONFIG_NO_HZ */
105static inline void rcu_enter_nohz(void)
106{
107}
108static inline void rcu_exit_nohz(void)
109{
110}
111#endif /* CONFIG_NO_HZ */
112
Paul E. McKenneya6826042009-02-25 18:03:42 -0800113/* A context switch is a grace period for rcutree. */
114static inline int rcu_blocking_is_gp(void)
115{
116 return num_online_cpus() == 1;
117}
118
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100119#endif /* __LINUX_RCUTREE_H */