]> git.baikalelectronics.ru Git - kernel.git/commit
nohz: Fix local_timer_softirq_pending()
authorAnna-Maria Gleixner <anna-maria@linutronix.de>
Tue, 31 Jul 2018 16:13:58 +0000 (18:13 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 31 Jul 2018 20:08:44 +0000 (22:08 +0200)
commit1e116e1b90e611cea55c69fc2674c40264e21da5
tree110057bdbdc33812275250f48387d2c02dff4597
parentde5c44bd47ded84db2f03e6e3916668ed0e0cdc0
nohz: Fix local_timer_softirq_pending()

local_timer_softirq_pending() checks whether the timer softirq is
pending with: local_softirq_pending() & TIMER_SOFTIRQ.

This is wrong because TIMER_SOFTIRQ is the softirq number and not a
bitmask. So the test checks for the wrong bit.

Use BIT(TIMER_SOFTIRQ) instead.

Fixes: 56ef835c0eea ("nohz: Prevent a timer interrupt storm in tick_nohz_stop_sched_tick()")
Signed-off-by: Anna-Maria Gleixner <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Daniel Bristot de Oliveira <bristot@redhat.com>
Acked-by: Frederic Weisbecker <frederic@kernel.org>
Cc: bigeasy@linutronix.de
Cc: peterz@infradead.org
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/20180731161358.29472-1-anna-maria@linutronix.de
kernel/time/tick-sched.c