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

Pull timer fix from Ingo Molnar:
"Fix a lockdep false positive in the i8253 driver"

* tag 'timers-urgent-2025-04-18' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/i8253: Call clockevent_i8253_disable() with interrupts disabled

+2 -1
+2 -1
arch/x86/kernel/i8253.c
··· 46 46 * VMMs otherwise steal CPU time just to pointlessly waggle 47 47 * the (masked) IRQ. 48 48 */ 49 - clockevent_i8253_disable(); 49 + scoped_guard(irq) 50 + clockevent_i8253_disable(); 50 51 return false; 51 52 } 52 53 clockevent_i8253_init(true);