rcu: Fix code-style issues involving "else"
The Linux kernel coding style says that single-statement blocks should omit curly braces unless the other leg of the "if" statement has multiple statements, in which case the curly braces should be included. This commit fixes RCU's violations of this rule. Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org>
This commit is contained in:
committed by
Paul E. McKenney
parent
02a0677b0b
commit
c701d5d9b3
@@ -350,8 +350,9 @@ static int rcu_initiate_boost(void)
|
||||
rcu_preempt_ctrlblk.boost_tasks =
|
||||
rcu_preempt_ctrlblk.gp_tasks;
|
||||
invoke_rcu_callbacks();
|
||||
} else
|
||||
} else {
|
||||
RCU_TRACE(rcu_initiate_boost_trace());
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -778,9 +779,9 @@ void synchronize_rcu_expedited(void)
|
||||
rpcp->exp_tasks = NULL;
|
||||
|
||||
/* Wait for tail of ->blkd_tasks list to drain. */
|
||||
if (!rcu_preempted_readers_exp())
|
||||
if (!rcu_preempted_readers_exp()) {
|
||||
local_irq_restore(flags);
|
||||
else {
|
||||
} else {
|
||||
rcu_initiate_boost();
|
||||
local_irq_restore(flags);
|
||||
wait_event(sync_rcu_preempt_exp_wq,
|
||||
|
Reference in New Issue
Block a user