Commit 4afc7e26 authored by Pranith Kumar's avatar Pranith Kumar Committed by Paul E. McKenney

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: default avatarPranith Kumar <bobby.prani@gmail.com>
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tested-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 0a9e1e11
...@@ -2574,7 +2574,7 @@ static void rcu_init_one_nocb(struct rcu_node *rnp) ...@@ -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, static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
bool lazy, unsigned long flags) bool lazy, unsigned long flags)
{ {
return 0; return false;
} }
static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp, static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment