diff options
author | Pranith Kumar <bobby.prani@gmail.com> | 2014-07-08 18:26:15 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2014-09-16 13:08:00 -0400 |
commit | 0a9e1e111b3a9e1c21d2dd27ca361cd9601d99af (patch) | |
tree | 979d2da20b862e2cc274b1d52e17c5504de2a145 /kernel | |
parent | c271d3a957384a162f7a6aae53455d8e8afd1f3e (diff) |
rcu: Use true/false for return in rcu_nocb_adopt_orphan_cbs()
Return true/false in rcu_nocb_adopt_orphan_cbs() instead of 0/1 as
this function has return type of bool.
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')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 36c678b898fa..662584142e0c 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h | |||
@@ -2150,7 +2150,7 @@ static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp, | |||
2150 | 2150 | ||
2151 | /* If this is not a no-CBs CPU, tell the caller to do it the old way. */ | 2151 | /* If this is not a no-CBs CPU, tell the caller to do it the old way. */ |
2152 | if (!rcu_is_nocb_cpu(smp_processor_id())) | 2152 | if (!rcu_is_nocb_cpu(smp_processor_id())) |
2153 | return 0; | 2153 | return false; |
2154 | rsp->qlen = 0; | 2154 | rsp->qlen = 0; |
2155 | rsp->qlen_lazy = 0; | 2155 | rsp->qlen_lazy = 0; |
2156 | 2156 | ||
@@ -2169,7 +2169,7 @@ static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp, | |||
2169 | rsp->orphan_nxtlist = NULL; | 2169 | rsp->orphan_nxtlist = NULL; |
2170 | rsp->orphan_nxttail = &rsp->orphan_nxtlist; | 2170 | rsp->orphan_nxttail = &rsp->orphan_nxtlist; |
2171 | } | 2171 | } |
2172 | return 1; | 2172 | return true; |
2173 | } | 2173 | } |
2174 | 2174 | ||
2175 | /* | 2175 | /* |