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 bugfix from Thomas Gleixner:
"A single bugfix for the error check wreckage we introduced in the
merge window"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
time: Make settimeofday error checking work again

+3
+3
include/linux/timekeeping.h
··· 21 21 struct timespec64 ts64; 22 22 23 23 if (!tv) 24 + return do_sys_settimeofday64(NULL, tz); 25 + 26 + if (!timespec_valid(tv)) 24 27 return -EINVAL; 25 28 26 29 ts64 = timespec_to_timespec64(*tv);