summaryrefslogtreecommitdiff
path: root/backport/backport-include/linux/timekeeping.h
diff options
context:
space:
mode:
Diffstat (limited to 'backport/backport-include/linux/timekeeping.h')
-rw-r--r--backport/backport-include/linux/timekeeping.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/backport/backport-include/linux/timekeeping.h b/backport/backport-include/linux/timekeeping.h
index 56c3deec..73ce9f17 100644
--- a/backport/backport-include/linux/timekeeping.h
+++ b/backport/backport-include/linux/timekeeping.h
@@ -58,4 +58,12 @@ static inline void ktime_get_ts64(struct timespec64 *ts)
}
#endif
+#if LINUX_VERSION_IS_LESS(4,18,0)
+#define ktime_get_raw_ts64 LINUX_BACKPORT(ktime_get_raw_ts64)
+static inline void ktime_get_raw_ts64(struct timespec64 *ts)
+{
+ return getrawmonotonic64(ts);
+}
+#endif
+
#endif /* __BACKPORT_TIMEKEEPING_H */