Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[linux-2.6-block.git] / include / linux / rcutree.h
CommitLineData
a9b7343e 1/* SPDX-License-Identifier: GPL-2.0+ */
64db4cff
PM
2/*
3 * Read-Copy Update mechanism for mutual exclusion (tree-based version)
4 *
64db4cff
PM
5 * Copyright IBM Corporation, 2008
6 *
7 * Author: Dipankar Sarma <dipankar@in.ibm.com>
a9b7343e 8 * Paul E. McKenney <paulmck@linux.ibm.com> Hierarchical algorithm
64db4cff 9 *
a9b7343e 10 * Based on the original work by Paul McKenney <paulmck@linux.ibm.com>
64db4cff
PM
11 * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen.
12 *
13 * For detailed explanation of Read-Copy Update mechanism see -
a71fca58 14 * Documentation/RCU
64db4cff
PM
15 */
16
17#ifndef __LINUX_RCUTREE_H
18#define __LINUX_RCUTREE_H
19
d28139c4 20void rcu_softirq_qs(void);
bcbfdd01 21void rcu_note_context_switch(bool preempt);
c1ad348b 22int rcu_needs_cpu(u64 basem, u64 *nextevt);
584dc4ce 23void rcu_cpu_stall_reset(void);
64db4cff 24
29ce8310
GN
25/*
26 * Note a virtualization-based context switch. This is simply a
27 * wrapper around rcu_note_context_switch(), which allows TINY_RCU
46a5d164 28 * to save a few bytes. The caller must have disabled interrupts.
29ce8310
GN
29 */
30static inline void rcu_virt_note_context_switch(int cpu)
31{
bcbfdd01 32 rcu_note_context_switch(false);
29ce8310
GN
33}
34
584dc4ce 35void synchronize_rcu_expedited(void);
c408b215 36void kvfree_call_rcu(struct rcu_head *head, rcu_callback_t func);
486e2593 37
584dc4ce 38void rcu_barrier(void);
17672480 39bool rcu_eqs_special_set(int cpu);
366237e7 40void rcu_momentary_dyntick_idle(void);
a35d1690 41void kfree_rcu_scheduler_running(void);
6be7436d 42bool rcu_gp_might_be_stalled(void);
765a3f4f 43unsigned long get_state_synchronize_rcu(void);
7abb18bd
PM
44unsigned long start_poll_synchronize_rcu(void);
45bool poll_state_synchronize_rcu(unsigned long oldstate);
765a3f4f 46void cond_synchronize_rcu(unsigned long oldstate);
a57eb940 47
51952bc6
PM
48void rcu_idle_enter(void);
49void rcu_idle_exit(void);
50void rcu_irq_enter(void);
51void rcu_irq_exit(void);
8ae0ae67 52void rcu_irq_exit_preempt(void);
7c9906ca
PM
53void rcu_irq_enter_irqson(void);
54void rcu_irq_exit_irqson(void);
3fcd6a23 55bool rcu_is_idle_cpu(int cpu);
51952bc6 56
07325d4a
TG
57#ifdef CONFIG_PROVE_RCU
58void rcu_irq_exit_check_preempt(void);
59#else
60static inline void rcu_irq_exit_check_preempt(void) { }
61#endif
62
584dc4ce 63void exit_rcu(void);
2439b696 64
584dc4ce 65void rcu_scheduler_starting(void);
bbad9379 66extern int rcu_scheduler_active __read_mostly;
d2b1654f 67void rcu_end_inkernel_boot(void);
59ee0326 68bool rcu_inkernel_boot_has_ended(void);
584dc4ce 69bool rcu_is_watching(void);
01b1d88b 70#ifndef CONFIG_PREEMPTION
5cd37193 71void rcu_all_qs(void);
395a2f09 72#endif
5cd37193 73
4df83742
TG
74/* RCUtree hotplug events */
75int rcutree_prepare_cpu(unsigned int cpu);
76int rcutree_online_cpu(unsigned int cpu);
77int rcutree_offline_cpu(unsigned int cpu);
78int rcutree_dead_cpu(unsigned int cpu);
79int rcutree_dying_cpu(unsigned int cpu);
f64c6013 80void rcu_cpu_starting(unsigned int cpu);
4df83742 81
64db4cff 82#endif /* __LINUX_RCUTREE_H */