Linux Audio

Check our new training course

Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0+ */
  2/*
  3 * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition.
  4 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 * Copyright IBM Corporation, 2008
  6 *
  7 * Author: Paul E. McKenney <paulmck@linux.ibm.com>
  8 *
  9 * For detailed explanation of Read-Copy Update mechanism see -
 10 *		Documentation/RCU
 11 */
 12#ifndef __LINUX_TINY_H
 13#define __LINUX_TINY_H
 14
 15#include <asm/param.h> /* for HZ */
 16
 17/* Never flag non-existent other CPUs! */
 18static inline bool rcu_eqs_special_set(int cpu) { return false; }
 
 
 
 19
 20static inline unsigned long get_state_synchronize_rcu(void)
 21{
 22	return 0;
 23}
 24
 25static inline void cond_synchronize_rcu(unsigned long oldstate)
 26{
 27	might_sleep();
 28}
 29
 30extern void rcu_barrier(void);
 31
 32static inline void synchronize_rcu_expedited(void)
 
 
 
 
 
 33{
 34	synchronize_rcu();
 35}
 36
 37/*
 38 * Add one more declaration of kvfree() here. It is
 39 * not so straight forward to just include <linux/mm.h>
 40 * where it is defined due to getting many compile
 41 * errors caused by that include.
 42 */
 43extern void kvfree(const void *addr);
 44
 45static inline void kvfree_call_rcu(struct rcu_head *head, rcu_callback_t func)
 46{
 47	if (head) {
 48		call_rcu(head, func);
 49		return;
 50	}
 51
 52	// kvfree_rcu(one_arg) call.
 53	might_sleep();
 54	synchronize_rcu();
 55	kvfree((void *) func);
 56}
 57
 58void rcu_qs(void);
 59
 60static inline void rcu_softirq_qs(void)
 61{
 62	rcu_qs();
 63}
 64
 65#define rcu_note_context_switch(preempt) \
 66	do { \
 67		rcu_qs(); \
 68		rcu_tasks_qs(current, (preempt)); \
 69	} while (0)
 70
 71static inline int rcu_needs_cpu(u64 basemono, u64 *nextevt)
 72{
 73	*nextevt = KTIME_MAX;
 74	return 0;
 75}
 76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 77/*
 78 * Take advantage of the fact that there is only one CPU, which
 79 * allows us to ignore virtualization-based context switches.
 80 */
 81static inline void rcu_virt_note_context_switch(int cpu) { }
 82static inline void rcu_cpu_stall_reset(void) { }
 83static inline int rcu_jiffies_till_stall_check(void) { return 21 * HZ; }
 84static inline void rcu_idle_enter(void) { }
 85static inline void rcu_idle_exit(void) { }
 86static inline void rcu_irq_enter(void) { }
 87static inline void rcu_irq_exit_irqson(void) { }
 88static inline void rcu_irq_enter_irqson(void) { }
 89static inline void rcu_irq_exit(void) { }
 90static inline void rcu_irq_exit_preempt(void) { }
 91static inline void rcu_irq_exit_check_preempt(void) { }
 92static inline void exit_rcu(void) { }
 93static inline bool rcu_preempt_need_deferred_qs(struct task_struct *t)
 94{
 95	return false;
 96}
 97static inline void rcu_preempt_deferred_qs(struct task_struct *t) { }
 98#ifdef CONFIG_SRCU
 99void rcu_scheduler_starting(void);
100#else /* #ifndef CONFIG_SRCU */
101static inline void rcu_scheduler_starting(void) { }
102#endif /* #else #ifndef CONFIG_SRCU */
103static inline void rcu_end_inkernel_boot(void) { }
104static inline bool rcu_inkernel_boot_has_ended(void) { return true; }
105static inline bool rcu_is_watching(void) { return true; }
106static inline bool __rcu_is_watching(void) { return true; }
107static inline void rcu_momentary_dyntick_idle(void) { }
108static inline void kfree_rcu_scheduler_running(void) { }
109static inline bool rcu_gp_might_be_stalled(void) { return false; }
110
111/* Avoid RCU read-side critical sections leaking across. */
112static inline void rcu_all_qs(void) { barrier(); }
113
114/* RCUtree hotplug events */
115#define rcutree_prepare_cpu      NULL
116#define rcutree_online_cpu       NULL
117#define rcutree_offline_cpu      NULL
118#define rcutree_dead_cpu         NULL
119#define rcutree_dying_cpu        NULL
120static inline void rcu_cpu_starting(unsigned int cpu) { }
 
 
 
 
121
122#endif /* __LINUX_RCUTINY_H */
v3.1
 
  1/*
  2 * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition.
  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: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
 21 *
 22 * For detailed explanation of Read-Copy Update mechanism see -
 23 *		Documentation/RCU
 24 */
 25#ifndef __LINUX_TINY_H
 26#define __LINUX_TINY_H
 27
 28#include <linux/cache.h>
 29
 30static inline void rcu_init(void)
 31{
 32}
 33
 34#ifdef CONFIG_TINY_RCU
 35
 36static inline void synchronize_rcu_expedited(void)
 37{
 38	synchronize_sched();	/* Only one CPU, so pretty fast anyway!!! */
 39}
 40
 41static inline void rcu_barrier(void)
 42{
 43	rcu_barrier_sched();  /* Only one CPU, so only one list of callbacks! */
 44}
 45
 46#else /* #ifdef CONFIG_TINY_RCU */
 47
 48void rcu_barrier(void);
 49void synchronize_rcu_expedited(void);
 50
 51#endif /* #else #ifdef CONFIG_TINY_RCU */
 52
 53static inline void synchronize_rcu_bh(void)
 54{
 55	synchronize_sched();
 56}
 57
 58static inline void synchronize_rcu_bh_expedited(void)
 
 
 
 
 
 
 
 
 59{
 60	synchronize_sched();
 61}
 
 
 62
 63static inline void synchronize_sched_expedited(void)
 64{
 65	synchronize_sched();
 
 66}
 67
 68#ifdef CONFIG_TINY_RCU
 69
 70static inline void rcu_preempt_note_context_switch(void)
 71{
 
 72}
 73
 74static inline void exit_rcu(void)
 75{
 76}
 
 
 77
 78static inline int rcu_needs_cpu(int cpu)
 79{
 
 80	return 0;
 81}
 82
 83#else /* #ifdef CONFIG_TINY_RCU */
 84
 85void rcu_preempt_note_context_switch(void);
 86extern void exit_rcu(void);
 87int rcu_preempt_needs_cpu(void);
 88
 89static inline int rcu_needs_cpu(int cpu)
 90{
 91	return rcu_preempt_needs_cpu();
 92}
 93
 94#endif /* #else #ifdef CONFIG_TINY_RCU */
 95
 96static inline void rcu_note_context_switch(int cpu)
 97{
 98	rcu_sched_qs(cpu);
 99	rcu_preempt_note_context_switch();
100}
101
102/*
103 * Take advantage of the fact that there is only one CPU, which
104 * allows us to ignore virtualization-based context switches.
105 */
106static inline void rcu_virt_note_context_switch(int cpu)
107{
108}
109
110/*
111 * Return the number of grace periods.
112 */
113static inline long rcu_batches_completed(void)
114{
115	return 0;
116}
117
118/*
119 * Return the number of bottom-half grace periods.
120 */
121static inline long rcu_batches_completed_bh(void)
122{
123	return 0;
124}
125
126static inline void rcu_force_quiescent_state(void)
127{
128}
129
130static inline void rcu_bh_force_quiescent_state(void)
131{
132}
133
134static inline void rcu_sched_force_quiescent_state(void)
135{
136}
137
138static inline void rcu_cpu_stall_reset(void)
139{
140}
141
142#ifdef CONFIG_DEBUG_LOCK_ALLOC
143extern int rcu_scheduler_active __read_mostly;
144extern void rcu_scheduler_starting(void);
145#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
146static inline void rcu_scheduler_starting(void)
147{
148}
149#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
150
151#endif /* __LINUX_RCUTINY_H */