Merge tag 'timers_urgent_for_v6.10_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Borislav Petkov:

- Warn when an hrtimer doesn't get a callback supplied

* tag 'timers_urgent_for_v6.10_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
hrtimer: Prevent queuing of hrtimer without a function callback

+2
+2
kernel/time/hrtimer.c
··· 1285 1285 struct hrtimer_clock_base *base; 1286 1286 unsigned long flags; 1287 1287 1288 + if (WARN_ON_ONCE(!timer->function)) 1289 + return; 1288 1290 /* 1289 1291 * Check whether the HRTIMER_MODE_SOFT bit and hrtimer.is_soft 1290 1292 * match on CONFIG_PREEMPT_RT = n. With PREEMPT_RT check the hard