svn commit: r300507 - head/sys/compat/linuxkpi/common/include/linux

Hans Petter Selasky hselasky at FreeBSD.org
Mon May 23 13:19:21 UTC 2016


Author: hselasky
Date: Mon May 23 13:19:20 2016
New Revision: 300507
URL: https://svnweb.freebsd.org/changeset/base/300507

Log:
  A missing definition needed by ktime_to_ms().
  
  Obtained from:	kmacy @
  MFC after:	1 week
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/compat/linuxkpi/common/include/linux/time.h

Modified: head/sys/compat/linuxkpi/common/include/linux/time.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/time.h	Mon May 23 13:18:15 2016	(r300506)
+++ head/sys/compat/linuxkpi/common/include/linux/time.h	Mon May 23 13:19:20 2016	(r300507)
@@ -29,6 +29,7 @@
 #define	_LINUX_TIME_H_
 
 #define	NSEC_PER_USEC	1000L
+#define	NSEC_PER_MSEC	1000000L
 #define	NSEC_PER_SEC	1000000000L
 
 #include <sys/time.h>


More information about the svn-src-all mailing list