diff options
author | Mark Brown <broonie@linaro.org> | 2013-12-30 13:38:53 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-12-30 13:38:53 +0100 |
commit | 34f653345018c42cedea89b7f6a4aba3783ebd7b (patch) | |
tree | 663f490f3e16571516dbcce7a2cb2f2545f79dee /kernel/rcu/tree_plugin.h | |
parent | regmap: Allow regmap_bulk_read() to work for "no-bus" regmaps (diff) | |
parent | Linux 3.13-rc4 (diff) | |
download | linux-34f653345018c42cedea89b7f6a4aba3783ebd7b.tar.xz linux-34f653345018c42cedea89b7f6a4aba3783ebd7b.zip |
Merge tag 'v3.13-rc4' into regmap-core
Needed as a subsequent patch is built on some of the fixes.
Linux 3.13-rc4
Diffstat (limited to 'kernel/rcu/tree_plugin.h')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 6abb03dff5c0..08a765232432 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -1632,7 +1632,7 @@ module_param(rcu_idle_gp_delay, int, 0644); static int rcu_idle_lazy_gp_delay = RCU_IDLE_LAZY_GP_DELAY; module_param(rcu_idle_lazy_gp_delay, int, 0644); -extern int tick_nohz_enabled; +extern int tick_nohz_active; /* * Try to advance callbacks for all flavors of RCU on the current CPU, but @@ -1729,7 +1729,7 @@ static void rcu_prepare_for_idle(int cpu) int tne; /* Handle nohz enablement switches conservatively. */ - tne = ACCESS_ONCE(tick_nohz_enabled); + tne = ACCESS_ONCE(tick_nohz_active); if (tne != rdtp->tick_nohz_enabled_snap) { if (rcu_cpu_has_callbacks(cpu, NULL)) invoke_rcu_core(); /* force nohz to see update. */ |