rcu: Fix rcu_is_cpu_idle() #ifdef in TINY_RCU
authorPaul E. McKenney <paul.mckenney@linaro.org>
Wed, 6 Jun 2012 14:12:43 +0000 (07:12 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 2 Jul 2012 19:34:25 +0000 (12:34 -0700)
commitd7118175cce7e76b3292b60832813ef1f28b6523
tree3fb9f6b0e4ce52ea187113e87389b909837fdbeb
parent29154c57e35a191c83b19c61b1935c9f21957662
rcu: Fix rcu_is_cpu_idle() #ifdef in TINY_RCU

The rcu_is_cpu_idle() function is used if CONFIG_DEBUG_LOCK_ALLOC,
but TINY_RCU defines it only when CONFIG_PROVE_RCU.  This causes
build failures when CONFIG_DEBUG_LOCK_ALLOC=y but CONFIG_PROVE_RCU=n.
This commit therefore adjusts the #ifdefs for rcu_is_cpu_idle() so
that it is defined when CONFIG_DEBUG_LOCK_ALLOC=y.

Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcutiny.c