Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Nov 2018 16:19:16 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340479 - head/sys/compat/linuxkpi/common/include/linux
Message-ID:  <201811161619.wAGGJGIW086952@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Fri Nov 16 16:19:16 2018
New Revision: 340479
URL: https://svnweb.freebsd.org/changeset/base/340479

Log:
  Implement ktime_get_ts64() function macro in the LinuxKPI.
  
  Submitted by:		Johannes Lundberg <johalun0@gmail.com>
  MFC after:		1 week
  Sponsored by:		Mellanox Technologies

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

Modified: head/sys/compat/linuxkpi/common/include/linux/ktime.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/ktime.h	Fri Nov 16 14:29:28 2018	(r340478)
+++ head/sys/compat/linuxkpi/common/include/linux/ktime.h	Fri Nov 16 16:19:16 2018	(r340479)
@@ -176,6 +176,7 @@ timeval_to_ktime(struct timeval tv)
 #define	ktime_to_timespec64(kt)		ns_to_timespec(kt)
 #define	ktime_to_timeval(kt)		ns_to_timeval(kt)
 #define	ktime_to_ns(kt)			(kt)
+#define	ktime_get_ts64(ts)		ktime_get_ts(ts)
 
 static inline int64_t
 ktime_get_ns(void)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811161619.wAGGJGIW086952>