Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f534ed1f authored by Pranith Kumar's avatar Pranith Kumar Committed by Paul E. McKenney
Browse files

rcu: Use bool type for return value in rcu_is_watching()



Use a bool type for return in rcu_is_watching().

Signed-off-by: default avatarPranith Kumar <bobby.prani@gmail.com>
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent bf33eb1a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();