summaryrefslogtreecommitdiffhomepage
path: root/src/compat
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-01-05 09:11:30 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-01-23 14:29:44 +0100
commit81286d78f5d7655a3cf9d3c61403363bab5f4be9 (patch)
tree93e2897dbdb6ec8f88c3023d2d8b9eef16eb90ba /src/compat
parent0c6958b2e3d6c01e13038fa690036ccbb922cce3 (diff)
noise: replace getnstimeofday64 with ktime_get_real_ts64
The former was just a wrapper around the latter, and so upstream is now removing it. Also adjust the compat kludge to deal with this. Reported-by: Alex Xu <alex@alxu.ca> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/compat')
-rw-r--r--src/compat/compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h
index d20a587..4ffe387 100644
--- a/src/compat/compat.h
+++ b/src/compat/compat.h
@@ -647,7 +647,7 @@ struct _____dummy_container { char dev; };
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0)
#define timespec64 timespec
-#define getnstimeofday64 getnstimeofday
+#define ktime_get_real_ts64 ktime_get_real_ts
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)