]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/rcutree.h
rcu: Move private definitions from include/linux/rcutree.h to kernel/rcutree.h
[mirror_ubuntu-bionic-kernel.git] / include / linux / rcutree.h
CommitLineData
64db4cff
PM
1/*
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
b1f77b05
IM
33extern void rcu_qsctr_inc(int cpu);
34extern void rcu_bh_qsctr_inc(int cpu);
64db4cff
PM
35
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
76#define call_rcu_sched(head, func) call_rcu(head, func)
77
03b042bf
PM
78static inline void synchronize_rcu_expedited(void)
79{
80 synchronize_sched_expedited();
81}
82
83static inline void synchronize_rcu_bh_expedited(void)
64db4cff 84{
03b042bf 85 synchronize_sched_expedited();
64db4cff
PM
86}
87
88extern void __rcu_init(void);
89extern void rcu_check_callbacks(int cpu, int user);
90extern void rcu_restart_cpu(int cpu);
91
92extern long rcu_batches_completed(void);
93extern long rcu_batches_completed_bh(void);
94
03b042bf
PM
95static inline void rcu_init_sched(void)
96{
97}
98
64db4cff
PM
99#ifdef CONFIG_NO_HZ
100void rcu_enter_nohz(void);
101void rcu_exit_nohz(void);
102#else /* CONFIG_NO_HZ */
103static inline void rcu_enter_nohz(void)
104{
105}
106static inline void rcu_exit_nohz(void)
107{
108}
109#endif /* CONFIG_NO_HZ */
110
a6826048
PM
111/* A context switch is a grace period for rcutree. */
112static inline int rcu_blocking_is_gp(void)
113{
114 return num_online_cpus() == 1;
115}
116
64db4cff 117#endif /* __LINUX_RCUTREE_H */