aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2017-03-15 16:11:11 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2017-04-18 14:38:21 -0400
commite95d68d2127716c7d6fb144bb19ef48ce9f37393 (patch)
tree40f1660a6c2829acc711e4702022f20ca59b83d1
parentefbe451d46af62369226e42b98dbcd95b6940a63 (diff)
srcu: Make num_rcu_lvl[] array be external
This commit makes the num_rcu_lvl[] array external so that SRCU can make use of it for initializing its upcoming srcu_node tree. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
-rw-r--r--kernel/rcu/rcu.h1
-rw-r--r--kernel/rcu/tree.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/kernel/rcu/rcu.h b/kernel/rcu/rcu.h
index 5c1798ec32f7..4303b880ac99 100644
--- a/kernel/rcu/rcu.h
+++ b/kernel/rcu/rcu.h
@@ -195,6 +195,7 @@ extern void resched_cpu(int cpu);
195#include <linux/rcu_node_tree.h> 195#include <linux/rcu_node_tree.h>
196 196
197extern int rcu_num_lvls; 197extern int rcu_num_lvls;
198extern int num_rcu_lvl[];
198extern int rcu_num_nodes; 199extern int rcu_num_nodes;
199static bool rcu_fanout_exact; 200static bool rcu_fanout_exact;
200static int rcu_fanout_leaf; 201static int rcu_fanout_leaf;
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index 9397a6693d70..346948b51b0b 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -123,7 +123,7 @@ static int rcu_fanout_leaf = RCU_FANOUT_LEAF;
123module_param(rcu_fanout_leaf, int, 0444); 123module_param(rcu_fanout_leaf, int, 0444);
124int rcu_num_lvls __read_mostly = RCU_NUM_LVLS; 124int rcu_num_lvls __read_mostly = RCU_NUM_LVLS;
125/* Number of rcu_nodes at specified level. */ 125/* Number of rcu_nodes at specified level. */
126static int num_rcu_lvl[] = NUM_RCU_LVL_INIT; 126int num_rcu_lvl[] = NUM_RCU_LVL_INIT;
127int rcu_num_nodes __read_mostly = NUM_RCU_NODES; /* Total # rcu_nodes in use. */ 127int rcu_num_nodes __read_mostly = NUM_RCU_NODES; /* Total # rcu_nodes in use. */
128/* panic() on RCU Stall sysctl. */ 128/* panic() on RCU Stall sysctl. */
129int sysctl_panic_on_rcu_stall __read_mostly; 129int sysctl_panic_on_rcu_stall __read_mostly;