Skip to content

Commit b671c1d

Browse files
committed
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()
2 parents 837c818 + 05dc4a9 commit b671c1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/time/hrtimer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ static bool update_needs_ipi(struct hrtimer_cpu_base *cpu_base,
913913
return true;
914914

915915
/* Extra check for softirq clock bases */
916-
if (base->clockid < HRTIMER_BASE_MONOTONIC_SOFT)
916+
if (base->index < HRTIMER_BASE_MONOTONIC_SOFT)
917917
continue;
918918
if (cpu_base->softirq_activated)
919919
continue;

0 commit comments

Comments
 (0)