mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
timers: Restructure get_next_timer_interrupt()
get_next_timer_interrupt() contains two parts for the next timer interrupt calculation. Those two parts are separated by forwarding the base clock. But the second part does not depend on the forwarded base clock. Therefore restructure get_next_timer_interrupt() to keep things together which belong together. No functional change. Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Frederic Weisbecker <frederic@kernel.org> Link: https://lore.kernel.org/r/20240221090548.36600-2-anna-maria@linutronix.de
This commit is contained in:
parent
2ed08e4bc5
commit
bebed6649e
@ -1982,12 +1982,6 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
|
||||
if (base->next_expiry_recalc)
|
||||
next_expiry_recalc(base);
|
||||
|
||||
/*
|
||||
* We have a fresh next event. Check whether we can forward the
|
||||
* base.
|
||||
*/
|
||||
__forward_timer_base(base, basej);
|
||||
|
||||
if (base->timers_pending) {
|
||||
nextevt = base->next_expiry;
|
||||
|
||||
@ -2005,6 +1999,12 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
|
||||
base->next_expiry = nextevt;
|
||||
}
|
||||
|
||||
/*
|
||||
* We have a fresh next event. Check whether we can forward the
|
||||
* base.
|
||||
*/
|
||||
__forward_timer_base(base, basej);
|
||||
|
||||
/*
|
||||
* Base is idle if the next event is more than a tick away.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user