aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu/tree_plugin.h
diff options
context:
space:
mode:
authorPranith Kumar <bobby.prani@gmail.com>2014-07-08 18:26:16 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2014-09-16 13:08:01 -0400
commit4afc7e269befc7b6e09a994e48c67e36f4a378e1 (patch)
tree410eeb0127ef46e2c60d2319219cb4cf51a461c7 /kernel/rcu/tree_plugin.h
parent0a9e1e111b3a9e1c21d2dd27ca361cd9601d99af (diff)
rcu: Use false for return in __call_rcu_nocb()
Return false instead of 0 in __call_rcu_nocb() as this has bool as return type. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Tested-by: Paul Gortmaker <paul.gortmaker@windriver.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 662584142e0c..427110475e33 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2574,7 +2574,7 @@ static void rcu_init_one_nocb(struct rcu_node *rnp)
2574static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp, 2574static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
2575 bool lazy, unsigned long flags) 2575 bool lazy, unsigned long flags)
2576{ 2576{
2577 return 0; 2577 return false;
2578} 2578}
2579 2579
2580static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp, 2580static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp,