Skip to content

Commit ac85740

Browse files
committed
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 parents b372359 + 3940f53 commit ac85740

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arch/x86/kernel/i8253.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ bool __init pit_timer_init(void)
4646
* VMMs otherwise steal CPU time just to pointlessly waggle
4747
* the (masked) IRQ.
4848
*/
49-
clockevent_i8253_disable();
49+
scoped_guard(irq)
50+
clockevent_i8253_disable();
5051
return false;
5152
}
5253
clockevent_i8253_init(true);

0 commit comments

Comments
 (0)