On 10/23/2015 09:23 AM, Johannes Berg wrote:
From: Johannes Berg <johannes.b...@intel.com>

Already submitted a patch for this. I just did not bother to introduce the timekeeping.h file. So yours may be preferred.

Regards,
Arend

Signed-off-by: Johannes Berg <johannes.b...@intel.com>
---
  backport/backport-include/linux/ktime.h       |  1 +
  backport/backport-include/linux/timekeeping.h | 21 +++++++++++++++++++++
  2 files changed, 22 insertions(+)
  create mode 100644 backport/backport-include/linux/timekeeping.h

diff --git a/backport/backport-include/linux/ktime.h 
b/backport/backport-include/linux/ktime.h
index 6fbc6c6eb26c..33ed31caf01a 100644
--- a/backport/backport-include/linux/ktime.h
+++ b/backport/backport-include/linux/ktime.h
@@ -1,6 +1,7 @@
  #ifndef __BACKPORT_LINUX_KTIME_H
  #define __BACKPORT_LINUX_KTIME_H
  #include_next <linux/ktime.h>
+#include <linux/timekeeping.h>
  #include <linux/version.h>

  #if  LINUX_VERSION_CODE < KERNEL_VERSION(3,17,0)
diff --git a/backport/backport-include/linux/timekeeping.h 
b/backport/backport-include/linux/timekeeping.h
new file mode 100644
index 000000000000..25ca76b5f802
--- /dev/null
+++ b/backport/backport-include/linux/timekeeping.h
@@ -0,0 +1,21 @@
+#ifndef __BACKPORT_TIMKEEPING_H
+#define __BACKPORT_TIMKEEPING_H
+#include <linux/version.h>
+#include <linux/types.h>
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
+#include_next <linux/timekeeping.h>
+#endif
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,19,0)
+static inline time_t ktime_get_seconds(void)
+{
+       struct timespec t;
+
+       ktime_get_ts(&t);
+
+       return t.tv_sec;
+}
+#endif
+
+#endif /* __BACKPORT_TIMKEEPING_H */


--
To unsubscribe from this list: send the line "unsubscribe backports" in

Reply via email to