rcu: Make RCU able to tolerate undefined CONFIG_RCU_FANOUT
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 20 Apr 2015 21:27:43 +0000 (14:27 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Wed, 27 May 2015 19:59:05 +0000 (12:59 -0700)
commit05c5df31afd1092ca6322094d22aff6351fa67fe
treedffce93d8da097a4701bfdafe4c23323371cd899
parent8739c5cb0fb145aeed8c56ddb5ba79381c74cb97
rcu: Make RCU able to tolerate undefined CONFIG_RCU_FANOUT

This commit introduces an RCU_FANOUT C-preprocessor macro so that RCU will
build even when CONFIG_RCU_FANOUT is undefined.  The RCU_FANOUT macro is
set to the value of CONFIG_RCU_FANOUT when defined, otherwise it is set
to 32 for 32-bit systems and 64 for 64-bit systems.  This commit then
makes CONFIG_RCU_FANOUT depend on CONFIG_RCU_EXPERT, so that Kconfig
users won't be asked about CONFIG_RCU_FANOUT unless they want to be.

Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Pranith Kumar <bobby.prani@gmail.com>
init/Kconfig
kernel/rcu/tree.c
kernel/rcu/tree.h
kernel/rcu/tree_plugin.h