Skip to content

Commit

Permalink
smp: Remove superfluous cond_func check in smp_call_function_many_cond()
Browse files Browse the repository at this point in the history
It was requested to remove the cond_func check but the follow up patch was
overlooked. Remove it now.

Fixes: 67719ef ("smp: Add a smp_cond_func_t argument to smp_call_function_many()")
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20200127083915.434tdkztorkklpdu@linutronix.de
  • Loading branch information
Sebastian Andrzej Siewior authored and Thomas Gleixner committed Jan 28, 2020
1 parent b0be0ef commit 25a3a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ static void smp_call_function_many_cond(const struct cpumask *mask,

/* Fastpath: do that cpu by itself. */
if (next_cpu >= nr_cpu_ids) {
if (!cond_func || (cond_func && cond_func(cpu, info)))
if (!cond_func || cond_func(cpu, info))
smp_call_function_single(cpu, func, info, wait);
return;
}
Expand Down

0 comments on commit 25a3a15

Please sign in to comment.