]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick is stopped
authorNicholas Piggin <npiggin@gmail.com>
Fri, 22 Apr 2022 14:14:46 +0000 (00:14 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Aug 2023 14:23:17 +0000 (16:23 +0200)
commitb2125926ba6665a2d84b4a09e7dd2807aeafa145
tree1368c4ba33c88ceb405b589144c8160c376319a7
parentae4f109b954d0ac0130b2934da7d79b950d5f5b7
timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick is stopped

commit 62c1256d544747b38e77ca9b5bfe3a26f9592576 upstream.

When tick_nohz_stop_tick() stops the tick and high resolution timers are
disabled, then the clock event device is not put into ONESHOT_STOPPED
mode. This can lead to spurious timer interrupts with some clock event
device drivers that don't shut down entirely after firing.

Eliminate these by putting the device into ONESHOT_STOPPED mode at points
where it is not being reprogrammed. When there are no timers active, then
tick_program_event() with KTIME_MAX can be used to stop the device. When
there is a timer active, the device can be stopped at the next tick (any
new timer added by timers will reprogram the tick).

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20220422141446.915024-1-npiggin@gmail.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/time/tick-sched.c