svn commit: r316968 - stable/11/sys/compat/linux
Dmitry Chagin
dchagin at FreeBSD.org
Sat Apr 15 15:31:30 UTC 2017
Author: dchagin
Date: Sat Apr 15 15:31:28 2017
New Revision: 316968
URL: https://svnweb.freebsd.org/changeset/base/316968
Log:
MFC r316394:
The value in the tv_nsec field should be in the range 0 to 999999999.
Modified:
stable/11/sys/compat/linux/linux_time.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/compat/linux/linux_time.c
==============================================================================
--- stable/11/sys/compat/linux/linux_time.c Sat Apr 15 15:30:28 2017 (r316967)
+++ stable/11/sys/compat/linux/linux_time.c Sat Apr 15 15:31:28 2017 (r316968)
@@ -141,7 +141,7 @@ linux_to_native_timespec(struct timespec
LIN_SDT_PROBE2(time, linux_to_native_timespec, entry, ntp, ltp);
- if (ltp->tv_sec < 0 || (l_ulong)ltp->tv_nsec > 999999999L) {
+ if (ltp->tv_sec < 0 || ltp->tv_nsec < 0 || ltp->tv_nsec > 999999999) {
LIN_SDT_PROBE1(time, linux_to_native_timespec, return, EINVAL);
return (EINVAL);
}
More information about the svn-src-all
mailing list