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 Ingo Molnar:
"Fix a sporadic missed timer hw reprogramming bug that can result in
random delays"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
tick/nohz: Fix possible missing clock reprog after tick soft restart

+5
+5
kernel/time/tick-sched.c
··· 725 725 */ 726 726 if (delta == 0) { 727 727 tick_nohz_restart(ts, now); 728 + /* 729 + * Make sure next tick stop doesn't get fooled by past 730 + * clock deadline 731 + */ 732 + ts->next_tick = 0; 728 733 goto out; 729 734 } 730 735 }