From 362396f8e6b9a706445014d7a3e195680bd66bde Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 5 Jan 2019 09:11:30 +0100 Subject: 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 --- src/compat/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compat') 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) -- cgit v1.2.3-59-g8ed1b