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 Glexiner:
"A single regression fix to address the unintended breakage of posix
cpu timers.

This is caused by a new sanity check in the common code, which fails
for posix cpu timers under certain conditions because the posix cpu
timer code never updates the variable which is checked"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
posix-cpu-timers: Unbreak timer rearming

+1
+1
kernel/time/posix-cpu-timers.c
··· 685 685 * set up the signal and overrun bookkeeping. 686 686 */ 687 687 timer->it.cpu.incr = timespec64_to_ns(&new->it_interval); 688 + timer->it_interval = ns_to_ktime(timer->it.cpu.incr); 688 689 689 690 /* 690 691 * This acts as a modification timestamp for the timer,