aboutsummaryrefslogtreecommitdiff
path: root/kernel/rcu/tree_plugin.h
diff options
context:
space:
mode:
authorGravatar Paul E. McKenney <paulmck@linux.vnet.ibm.com> 2015-10-20 12:38:49 -0700
committerGravatar Paul E. McKenney <paulmck@linux.vnet.ibm.com> 2015-12-07 17:01:19 -0800
commita87f203e2731ab477386c678e59033ee103018c0 (patch)
treebbac44e9e4cf2696ad197ca576e09184295bbf33 /kernel/rcu/tree_plugin.h
parentrcu: Stop disabling interrupts in scheduler fastpaths (diff)
downloadlinux-a87f203e2731ab477386c678e59033ee103018c0.tar.gz
linux-a87f203e2731ab477386c678e59033ee103018c0.tar.bz2
linux-a87f203e2731ab477386c678e59033ee103018c0.zip
rcu: Eliminate unused rcu_init_one() argument
Now that the rcu_state structure's ->rda field is compile-time initialized, there is no need to pass the per-CPU rcu_data structure into rcu_init_one(). This commit therefore eliminates this now-unused parameter. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree_plugin.h')
-rw-r--r--kernel/rcu/tree_plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index e6da888cc908..fccef5d4b198 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -777,7 +777,7 @@ EXPORT_SYMBOL_GPL(rcu_barrier);
*/
static void __init __rcu_init_preempt(void)
{
- rcu_init_one(rcu_state_p, rcu_data_p);
+ rcu_init_one(rcu_state_p);
}
/*