浏览代码

rcu: Return bool type for rcu_try_advance_all_cbs()

Return a bool type instead of 0 in rcu_try_advance_all_cbs().

Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Pranith Kumar 11 年之前
父节点
当前提交
d0bc90fd37
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      kernel/rcu/tree_plugin.h

+ 1 - 1
kernel/rcu/tree_plugin.h

@@ -1626,7 +1626,7 @@ static bool __maybe_unused rcu_try_advance_all_cbs(void)
 
 
 	/* Exit early if we advanced recently. */
 	/* Exit early if we advanced recently. */
 	if (jiffies == rdtp->last_advance_all)
 	if (jiffies == rdtp->last_advance_all)
-		return 0;
+		return false;
 	rdtp->last_advance_all = jiffies;
 	rdtp->last_advance_all = jiffies;
 
 
 	for_each_rcu_flavor(rsp) {
 	for_each_rcu_flavor(rsp) {