From: Pranith Kumar Date: Tue, 8 Jul 2014 22:26:16 +0000 (-0400) Subject: rcu: Use false for return in __call_rcu_nocb() X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4afc7e269befc7b6e09a994e48c67e36f4a378e1;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git 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 Signed-off-by: Paul E. McKenney Tested-by: Paul Gortmaker --- 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) static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp, bool lazy, unsigned long flags) { - return 0; + return false; } static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp,