Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'timers-urgent-2026-01-18' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Ingo Molnar:
"Fix the update_needs_ipi() check in the hrtimer code that may result
in incorrect skipping of hrtimer IPIs"

* tag 'timers-urgent-2026-01-18' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
hrtimer: Fix softirq base check in update_needs_ipi()

+1 -1
+1 -1
kernel/time/hrtimer.c
··· 913 913 return true; 914 914 915 915 /* Extra check for softirq clock bases */ 916 - if (base->clockid < HRTIMER_BASE_MONOTONIC_SOFT) 916 + if (base->index < HRTIMER_BASE_MONOTONIC_SOFT) 917 917 continue; 918 918 if (cpu_base->softirq_activated) 919 919 continue;