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 branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Thomas Gleixner:
"A single fix for a multiplication overflow in the timer code on 32bit
systems"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
timers: Fix overflow in get_next_timer_interrupt

+1 -1
+1 -1
kernel/time/timer.c
··· 1495 1495 base->is_idle = false; 1496 1496 } else { 1497 1497 if (!is_max_delta) 1498 - expires = basem + (nextevt - basej) * TICK_NSEC; 1498 + expires = basem + (u64)(nextevt - basej) * TICK_NSEC; 1499 1499 /* 1500 1500 * If we expect to sleep more than a tick, mark the base idle: 1501 1501 */