summaryrefslogtreecommitdiffstats
path: root/kernel/rcu
diff options
context:
space:
mode:
authorPranith Kumar2014-07-09 00:26:11 +0200
committerPaul E. McKenney2014-09-08 01:18:09 +0200
commitf534ed1fd71cea885a59255d9b44c3b17df03eb1 (patch)
tree08e787a364fc566f91b07d7779520b92e9ffefe9 /kernel/rcu
parentrcu: Fix sparse warning about rcu_batches_completed_preempt() being non-static (diff)
downloadkernel-qcow2-linux-f534ed1fd71cea885a59255d9b44c3b17df03eb1.tar.gz
kernel-qcow2-linux-f534ed1fd71cea885a59255d9b44c3b17df03eb1.tar.xz
kernel-qcow2-linux-f534ed1fd71cea885a59255d9b44c3b17df03eb1.zip
rcu: Use bool type for return value in rcu_is_watching()
Use a bool type for return in rcu_is_watching(). Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu')
-rw-r--r--kernel/rcu/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index 4b526ca46801..253ea55dc508 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -819,7 +819,7 @@ bool notrace __rcu_is_watching(void)
*/
bool notrace rcu_is_watching(void)
{
- int ret;
+ bool ret;
preempt_disable();
ret = __rcu_is_watching();