rapidio: fix IDLE2 bits corruption
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / rcutiny.h
blob13877cb93a6000043f11a6704f2d90b0cc04552d
1 /*
2 * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition.
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.
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.
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.
18 * Copyright IBM Corporation, 2008
20 * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
22 * For detailed explanation of Read-Copy Update mechanism see -
23 * Documentation/RCU
25 #ifndef __LINUX_TINY_H
26 #define __LINUX_TINY_H
28 #include <linux/cache.h>
30 #define rcu_init_sched() do { } while (0)
32 #ifdef CONFIG_TINY_RCU
34 static inline void synchronize_rcu_expedited(void)
36 synchronize_sched(); /* Only one CPU, so pretty fast anyway!!! */
39 static inline void rcu_barrier(void)
41 rcu_barrier_sched(); /* Only one CPU, so only one list of callbacks! */
44 #else /* #ifdef CONFIG_TINY_RCU */
46 void rcu_barrier(void);
47 void synchronize_rcu_expedited(void);
49 #endif /* #else #ifdef CONFIG_TINY_RCU */
51 static inline void synchronize_rcu_bh(void)
53 synchronize_sched();
56 static inline void synchronize_rcu_bh_expedited(void)
58 synchronize_sched();
61 #ifdef CONFIG_TINY_RCU
63 static inline void rcu_preempt_note_context_switch(void)
67 static inline void exit_rcu(void)
71 static inline int rcu_needs_cpu(int cpu)
73 return 0;
76 #else /* #ifdef CONFIG_TINY_RCU */
78 void rcu_preempt_note_context_switch(void);
79 extern void exit_rcu(void);
80 int rcu_preempt_needs_cpu(void);
82 static inline int rcu_needs_cpu(int cpu)
84 return rcu_preempt_needs_cpu();
87 #endif /* #else #ifdef CONFIG_TINY_RCU */
89 static inline void rcu_note_context_switch(int cpu)
91 rcu_sched_qs(cpu);
92 rcu_preempt_note_context_switch();
96 * Return the number of grace periods.
98 static inline long rcu_batches_completed(void)
100 return 0;
104 * Return the number of bottom-half grace periods.
106 static inline long rcu_batches_completed_bh(void)
108 return 0;
111 static inline void rcu_force_quiescent_state(void)
115 static inline void rcu_bh_force_quiescent_state(void)
119 static inline void rcu_sched_force_quiescent_state(void)
123 static inline void rcu_cpu_stall_reset(void)
127 #ifdef CONFIG_DEBUG_LOCK_ALLOC
129 extern int rcu_scheduler_active __read_mostly;
130 extern void rcu_scheduler_starting(void);
132 #else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
134 static inline void rcu_scheduler_starting(void)
138 #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
140 #endif /* __LINUX_RCUTINY_H */