tick/sched : Remove redundant cpu_online() check

can_stop_idle_tick() checks cpu_online() twice. The first check leaves the
function when the CPU is not online, so the second check it
redundant. Remove it.

Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: fweisbec@gmail.com
Link: https://lkml.kernel.org/r/1539099815-2943-1-git-send-email-penghao122@sina.com.cn
This commit is contained in:
Peng Hao 2018-10-09 11:43:35 -04:00 committed by Thomas Gleixner
parent 2f6affe35c
commit d59e0ba194

View file

@ -885,7 +885,7 @@ static bool can_stop_idle_tick(int cpu, struct tick_sched *ts)
if (need_resched())
return false;
if (unlikely(local_softirq_pending() && cpu_online(cpu))) {
if (unlikely(local_softirq_pending())) {
static int ratelimit;
if (ratelimit < 10 &&