aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/compat.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2017-11-23 14:22:06 +0100
committerArnd Bergmann <arnd@arndb.de>2019-11-15 14:38:29 +0100
commit693737b6cc2edc258040b28462a90b63503394d9 (patch)
treed0d77f867fd1522ff54b26b431beb005fe1553a3 /include/linux/compat.h
parenty2038: socket: use __kernel_old_timespec instead of timespec (diff)
downloadlinux-dev-693737b6cc2edc258040b28462a90b63503394d9.tar.xz
linux-dev-693737b6cc2edc258040b28462a90b63503394d9.zip
y2038: make ns_to_compat_timeval use __kernel_old_timeval
This gets us one step closer to removing 'struct timeval' from the kernel. We still keep __kernel_old_timeval for interfaces that we cannot fix otherwise, and ns_to_compat_timeval() is provably safe for interfaces that are legitimate users of __kernel_old_timeval on native kernels, so this is an obvious change. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to '')
-rw-r--r--include/linux/compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h
index 16dafd9f4b86..3735a22bfbc0 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -937,10 +937,10 @@ static inline bool in_compat_syscall(void) { return is_compat_task(); }
*/
static inline struct old_timeval32 ns_to_old_timeval32(s64 nsec)
{
- struct timeval tv;
+ struct __kernel_old_timeval tv;
struct old_timeval32 ctv;
- tv = ns_to_timeval(nsec);
+ tv = ns_to_kernel_old_timeval(nsec);
ctv.tv_sec = tv.tv_sec;
ctv.tv_usec = tv.tv_usec;