tiny_plugin.h 1.8 KB
Newer Older
1
/*
P
Paul E. McKenney 已提交
2
 * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition
3
 * Internal non-public definitions that provide either classic
P
Paul E. McKenney 已提交
4
 * or preemptible semantics.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
17 18
 * along with this program; if not, you can access it online at
 * http://www.gnu.org/licenses/gpl-2.0.html.
19
 *
P
Paul E. McKenney 已提交
20
 * Copyright (c) 2010 Linaro
21 22 23 24
 *
 * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
 */

25
#if defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_SRCU)
26 27
#include <linux/kernel_stat.h>

28 29
int rcu_scheduler_active __read_mostly;
EXPORT_SYMBOL_GPL(rcu_scheduler_active);
30 31 32

/*
 * During boot, we forgive RCU lockdep issues.  After this function is
33 34 35 36 37
 * invoked, we start taking RCU lockdep issues seriously.  Note that unlike
 * Tree RCU, Tiny RCU transitions directly from RCU_SCHEDULER_INACTIVE
 * to RCU_SCHEDULER_RUNNING, skipping the RCU_SCHEDULER_INIT stage.
 * The reason for this is that Tiny RCU does not need kthreads, so does
 * not have to care about the fact that the scheduler is half-initialized
38
 * at a certain phase of the boot process.  Unless SRCU is in the mix.
39
 */
40
void __init rcu_scheduler_starting(void)
41 42
{
	WARN_ON(nr_context_switches() > 0);
43 44
	rcu_scheduler_active = IS_ENABLED(CONFIG_SRCU)
		? RCU_SCHEDULER_INIT : RCU_SCHEDULER_RUNNING;
45 46
}

47
#endif /* #if defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_SRCU) */